/* ========================================
   FILE: style.css
   مكتب نجلاء أحمد بدوي للمحاماة
   النسخة العملاقة 2.0
   ======================================== */

/* ----------------------------------------
   TABLE OF CONTENTS:
   1. CSS RESET & VARIABLES
   2. GLOBAL STYLES
   3. LOADER
   4. COOKIE CONSENT
   5. WHATSAPP WIDGET
   6. ANNOUNCEMENT BAR
   7. HEADER & NAVIGATION
   8. MEGA MENU
   9. HERO SECTION
   10. QUICK LINKS
   11. FEATURES SECTION
   12. ABOUT SECTION
   13. SERVICES SECTION & TABS
   14. AREAS SECTION
   15. APPOINTMENT SECTION
   16. TESTIMONIALS
   17. BLOG SECTION
   18. FAQ SECTION
   19. CONTACT SECTION
   20. NEWSLETTER
   21. FOOTER
   22. BACK TO TOP
   23. DARK MODE
   24. RESPONSIVE
   25. UTILITIES
   ---------------------------------------- */

/* ===== 1. CSS RESET & VARIABLES ===== */
:root {
    /* الألوان الرئيسية */
    --primary-color: #b8860b;
    --primary-dark: #8b6508;
    --primary-light: #e6b422;
    --secondary-color: #1e3c5c;
    --secondary-dark: #0f2a3f;
    --accent-color: #b22222;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-lighter: #95a5a6;
    --white: #ffffff;
    --off-white: #f9f9f9;
    --light-gray: #ecf0f1;
    --gray: #bdc3c7;
    --dark-gray: #34495e;
    --black: #2c3e50;
    
    /* الخطوط */
    --font-primary: 'Tajawal', sans-serif;
    --font-secondary: 'Cairo', sans-serif;
    
    /* الظلال */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    --shadow-2xl: 0 25px 50px rgba(0,0,0,0.2);
    
    /* المسافات */
    --section-spacing: 80px;
    --element-spacing: 20px;
    --container-padding: 15px;
    
    /* حدود */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 20px;
    --border-radius-full: 9999px;
    
    /* transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* z-index */
    --z-negative: -1;
    --z-normal: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-popover: 500;
    --z-tooltip: 600;
    --z-toast: 700;
    --z-loader: 800;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    background-color: var(--white);
}

/* ===== 2. GLOBAL STYLES ===== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-fluid {
    width: 100%;
    padding: 0;
}

section {
    padding: var(--section-spacing) 0;
    position: relative;
}

/* قسم الهيدر */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-header.right {
    text-align: right;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.section-header.center .section-subtitle::after {
    right: 50%;
    transform: translateX(50%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-family: var(--font-secondary);
    line-height: 1.3;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* الأزرار */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-normal);
}

.btn-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* ===== 3. LOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: var(--z-loader);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.scale-container {
    animation: scaleIn 0.5s ease;
}

.loader .icon {
    margin-bottom: 20px;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

.loader .text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-family: var(--font-secondary);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-gray);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius-full);
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.percentage {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ===== 4. COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-2xl);
    z-index: var(--z-toast);
    display: none;
    animation: slideInUp 0.5s ease;
    border: 1px solid var(--light-gray);
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    padding: 25px;
    text-align: center;
}

.cookie-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cookie-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-buttons .btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--light-gray);
}

.btn-outline:hover {
    background-color: var(--light-gray);
    color: var(--text-dark);
    transform: none;
    box-shadow: none;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ===== 5. WHATSAPP WIDGET ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: var(--z-fixed);
}

#whatsapp-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25d366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    position: relative;
    animation: pulse 2s infinite;
}

#whatsapp-button:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-2xl);
}

#whatsapp-button .tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    pointer-events: none;
}

#whatsapp-button:hover .tooltip {
    opacity: 1;
    visibility: visible;
    top: -50px;
}

.whatsapp-dropdown {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 300px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-2xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.whatsapp-header {
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
}

.whatsapp-header h5 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.whatsapp-header p {
    font-size: 0.8rem;
    opacity: 0.9;
}

.whatsapp-body {
    padding: 15px;
}

.whatsapp-body p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quick-reply {
    padding: 8px 12px;
    background-color: var(--light-gray);
    border: none;
    border-radius: var(--border-radius-full);
    font-size: 0.8rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-fast);
}

.quick-reply:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.whatsapp-footer {
    padding: 10px 15px;
    background-color: var(--off-white);
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    border-top: 1px solid var(--light-gray);
}

/* ===== 6. ANNOUNCEMENT BAR ===== */
.top-announcement {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 10px 0;
    position: relative;
    z-index: var(--z-sticky);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
}

.announcement-content i:first-child {
    font-size: 1.2rem;
}

.announcement-content span {
    font-weight: 600;
    font-size: 1rem;
}

.close-announcement {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.close-announcement:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* ===== 7. HEADER & NAVIGATION ===== */
.header {
    position: sticky;
    top: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    z-index: var(--z-sticky);
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
    font-family: var(--font-secondary);
}

.logo-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Navigation */
.main-nav {
    flex: 1;
    margin: 0 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 1px;
}

.nav-menu > li {
    position: static;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 1px 15px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-fast);
    border-radius: var(--border-radius-md);
}

.nav-menu > li > a i {
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.nav-menu > li:hover > a {
    color: var(--primary-color);
    background-color: var(--off-white);
}

.nav-menu > li:hover > a i {
    transform: rotate(180deg);
}

.nav-menu > li.active > a {
    color: var(--primary-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-toggle,
.theme-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition-fast);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle:hover,
.theme-toggle:hover {
    background-color: var(--off-white);
    color: var(--primary-color);
    transform: scale(1.1);
}

.consultation-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: var(--border-radius-full);
    transition: var(--transition-normal);
}

/* Search Bar */
.search-bar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow-md);
    display: none;
    border-top: 1px solid var(--light-gray);
}

.search-bar.active {
    display: block;
    animation: slideInDown 0.3s ease;
}

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-container form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-container input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
}

.search-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.search-container button {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.search-container button:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    margin-top: 5px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: var(--z-dropdown);
}

.search-suggestions.active {
    display: block;
}

/* ===== 8. MEGA MENU ===== */
.megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: var(--z-dropdown);
    border-top: 3px solid var(--primary-color);
}

.has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.megamenu-col h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.megamenu-col h4 i {
    font-size: 1.3rem;
}

.megamenu-col ul {
    list-style: none;
}

.megamenu-col ul li {
    margin-bottom: 10px;
}

.megamenu-col ul li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
    display: block;
    padding: 5px 0;
}

.megamenu-col ul li a:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

.megamenu-col p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.megamenu-col img {
    width: 100%;
    border-radius: var(--border-radius-md);
    margin-top: 10px;
}

.services-grid .megamenu-col h4 {
    color: var(--text-dark);
}

/* ===== 9. HERO SECTION ===== */
.hero-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 90vh;
    min-height: 700px;
}

.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius-full);
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-subtitle .highlight {
    color: var(--primary-color);
    background-color: rgba(255,255,255,0.2);
    padding: 0 5px;
    border-radius: var(--border-radius-sm);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background-color: rgba(0,0,0,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--primary-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
}

/* ===== 10. QUICK LINKS ===== */
.quick-links {
    background-color: var(--white);
    padding: 30px 0;
    box-shadow: var(--shadow-md);
    position: relative;
    margin-top: -50px;
    z-index: var(--z-normal);
    border-radius: var(--border-radius-lg);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition-normal);
    padding: 15px;
    border-radius: var(--border-radius-md);
}

.quick-link-item:hover {
    background-color: var(--off-white);
    transform: translateY(-5px);
}

.quick-link-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.quick-link-item span {
    font-weight: 600;
    font-size: 1rem;
}

/* ===== 11. FEATURES SECTION ===== */
.featured-section {
    background-color: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transition: var(--transition-slow);
    z-index: -1;
    opacity: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.feature-card:hover::before {
    height: 100%;
    opacity: 1;
}

.feature-card:hover .feature-icon {
    background-color: var(--white);
    color: var(--primary-color);
}

.feature-card:hover h3,
.feature-card:hover p,
.feature-card:hover .feature-link {
    color: var(--white);
}

.feature-card:hover .feature-link i {
    transform: translateX(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    transition: var(--transition-normal);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    transition: var(--transition-normal);
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-normal);
}

.feature-link i {
    transition: var(--transition-normal);
}

/* ===== 12. ABOUT SECTION ===== */
.about-section {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 30px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.about-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.signature-block {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    margin-bottom: 30px;
    border-right: 4px solid var(--primary-color);
}

.signature-block p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.signature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.signature img {
    max-height: 50px;
    width: auto;
}

.signature .name {
    font-weight: 700;
    color: var(--primary-color);
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.about-stats .stat-item {
    text-align: center;
}

.about-stats .stat-number {
    font-size: 2rem;
    color: var(--primary-color);
    display: block;
    font-weight: 900;
}

.about-stats .stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== 13. SERVICES SECTION & TABS ===== */
.services-section {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

.services-tabs {
    margin-top: 50px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    background-color: var(--white);
    padding: 15px;
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-md);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    padding: 12px 25px;
    border: none;
    background-color: transparent;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: var(--border-radius-full);
    font-size: 1rem;
}

.tab-btn:hover {
    color: var(--primary-color);
    background-color: var(--off-white);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-color);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-normal);
}

.service-link:hover {
    gap: 10px;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius-lg);
    color: var(--white);
}

.services-cta p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

/* ===== 14. AREAS SECTION ===== */
.areas-section {
    padding: 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 600px;
}

.area-card {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 50px;
    transition: var(--transition-normal);
    position: relative;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    transition: var(--transition-normal);
}

.area-card:hover::before {
    background: rgba(184, 134, 11, 0.8);
}

.area-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.area-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.area-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.area-details {
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.detail-item i {
    color: var(--primary-color);
}

.detail-item a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition-fast);
}

.detail-item a:hover {
    border-bottom-color: var(--white);
}

/* ===== 15. APPOINTMENT SECTION ===== */
.appointment-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.appointment-text {
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.appointment-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.appointment-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.appointment-features {
    list-style: none;
}

.appointment-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.appointment-features li i {
    color: var(--white);
    font-size: 1.2rem;
}

.appointment-form {
    padding: 50px;
    background-color: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.appointment-form textarea {
    min-height: 100px;
    resize: vertical;
}

/* ===== 16. TESTIMONIALS ===== */
.testimonials-section {
    background-color: var(--white);
}

.testimonials-slider {
    padding: 20px 0 50px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin: 15px;
    position: relative;
    transition: var(--transition-normal);
    border: 1px solid var(--light-gray);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== 17. BLOG SECTION ===== */
.blog-section {
    background-color: var(--off-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: var(--border-radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-meta i {
    margin-left: 5px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-normal);
}

.read-more:hover {
    gap: 10px;
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== 18. FAQ SECTION ===== */
.faq-section {
    background-color: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.faq-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.accordion {
    margin-top: 30px;
}

.accordion-item {
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.accordion-item:hover {
    border-color: var(--primary-color);
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition-fast);
}

.accordion-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.accordion-icon {
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

.accordion-item.active .accordion-body {
    padding: 0 25px 20px;
    max-height: 500px;
}

.accordion-body p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== 19. CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.info-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid var(--light-gray);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.info-content p {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.info-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-fast);
}

.info-content a:hover {
    gap: 8px;
}

.social-links {
    margin-top: 30px;
}

.social-links h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-normal);
    border: 1px solid var(--light-gray);
    font-size: 1.1rem;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.contact-map {
    height: 600px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

#map {
    width: 100%;
    height: 100%;
}

/* ===== 20. NEWSLETTER ===== */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 50px 0;
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    color: var(--white);
}

.newsletter-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.newsletter-text p {
    font-size: 1rem;
    opacity: 0.9;
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.newsletter-form .checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.newsletter-form .checkbox a {
    color: var(--white);
    text-decoration: underline;
}

/* ===== 21. FOOTER ===== */
.footer {
    background-color: var(--secondary-dark);
    color: var(--white);
    padding-top: 70px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    max-width: 150px;
}

.footer-col p {
    line-height: 1.8;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-certifications {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-certifications span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-certifications img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
    display: block;
    opacity: 0.8;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: translateX(-5px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    font-size: 0.95rem;
}

.contact-info li i {
    color: var(--primary-color);
    width: 20px;
}

.footer-apps h5 {
    margin-bottom: 15px;
    font-size: 1rem;
}

.app-badges {
    display: flex;
    gap: 10px;
}

.app-badges img {
    height: 40px;
    width: auto;
    transition: var(--transition-fast);
}

.app-badges img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
}

.copyright {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* ===== 22. BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: var(--z-fixed);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

/* ===== 23. DARK MODE ===== */
body.dark-mode {
    --white: #1a1a1a;
    --off-white: #2d2d2d;
    --light-gray: #3d3d3d;
    --gray: #4d4d4d;
    --text-dark: #e0e0e0;
    --text-light: #b0b0b0;
    --dark-gray: #f0f0f0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.5);
}

/* Dark mode for appointment section */
.dark-mode .appointment-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}
.dark-mode .appointment-wrapper {
    background-color: #2d2d2d;
}
.dark-mode .appointment-form {
    background-color: #2d2d2d;
}
.dark-mode .appointment-form input,
.dark-mode .appointment-form select,
.dark-mode .appointment-form textarea {
    background-color: #1a1a1a;
    color: #e0e0e0;
    border-color: #3d3d3d;
}
.dark-mode .appointment-features li i {
    color: #e6b422;
}

.dark-mode .header,
.dark-mode .quick-links,
.dark-mode .feature-card,
.dark-mode .service-card,
.dark-mode .testimonial-card,
.dark-mode .blog-card,
.dark-mode .info-card,
.dark-mode .accordion-item {
    background-color: #2d2d2d;
}

.dark-mode .tabs-nav,
.dark-mode .appointment-form,
.dark-mode .whatsapp-dropdown {
    background-color: #2d2d2d;
    border-color: #3d3d3d;
}

.dark-mode input,
.dark-mode select,
.dark-mode textarea {
    background-color: #1a1a1a;
    color: var(--text-dark);
    border-color: #3d3d3d;
}

/* ===== 24. RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .header-wrapper {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
        .container {
        padding: 0 15px !important;
    }
    .main-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu > li > a {
        padding: 12px 15px;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--light-gray);
        display: flex;
        justify-content: space-between;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .megamenu {
        display: none;
    }
    
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-grid,
    .appointment-wrapper,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .area-card {
        height: 400px;
    }
    
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 50px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-nav {
        border-radius: var(--border-radius-md);
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .appointment-text,
    .appointment-form {
        padding: 30px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .whatsapp-dropdown {
        width: 280px;
        left: 0;
        right: auto;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }
    
    .consultation-btn span {
        display: none;
    }
    
    .consultation-btn i {
        margin: 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-consent {
        left: 15px;
        right: 15px;
        max-width: none;
    }
}

/* ===== 25. UTILITIES ===== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

/* Animations */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* AOS Custom */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .whatsapp-float,
    .back-to-top,
    .newsletter-section,
    .appointment-section {
        display: none !important;
    }
}
/* أضف هذا في نهاية style.css */

/* Page Header */
.page-header {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    background: transparent;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

/* About Page Specific */
.about-detailed {
    padding: 80px 0;
}

.lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.bio-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.credentials {
    margin-top: 30px;
    padding: 20px;
    background: var(--off-white);
    border-radius: var(--border-radius-lg);
}

.credentials h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.credentials ul {
    list-style: none;
}

.credentials ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.credentials ul li i {
    color: var(--primary-color);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vision-card, .mission-card, .values-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
}

.values-card ul {
    list-style: none;
    text-align: right;
}

.values-card ul li {
    margin-bottom: 10px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.achievement-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.achievement-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    display: block;
}

.achievement-label {
    color: var(--text-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-normal);
}

.team-member:hover .member-social {
    bottom: 20px;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.member-social a:hover {
    background: var(--white);
    color: var(--primary-color);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    margin-bottom: 5px;
}

.position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.bio {
    color: var(--text-light);
    font-size: 0.9rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.client-item {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-normal);
}

.client-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

.client-item img {
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
    .vision-mission-grid,
    .achievements-grid,
    .team-grid,
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vision-mission-grid,
    .achievements-grid,
    .team-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}
/* ===== SERVICES PAGE STYLES ===== */

/* Intro Section */
.services-intro {
    padding: 60px 0;
}

.intro-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.intro-text {
    flex: 2;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.intro-stats {
    flex: 1;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.stat-box {
    text-align: center;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
}

.stat-box .stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Categories Tabs */
.categories-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
    background: var(--white);
    padding: 15px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.category-tab {
    padding: 10px 25px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.category-tab:hover {
    color: var(--primary-color);
    background: var(--off-white);
}

.category-tab.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Service Category */
.service-category {
    margin-bottom: 50px;
}

.category-header {
    text-align: center;
    margin-bottom: 30px;
}

.category-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.category-header h3 i {
    color: var(--primary-color);
    margin-left: 10px;
}

.category-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Service Card */
.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.8rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-color);
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-features {
    margin-bottom: 20px;
}

.service-features span {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-features i {
    color: var(--primary-color);
    margin-left: 8px;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--light-gray);
    padding-top: 20px;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-item {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.process-number {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
}

.process-item h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.process-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Price Cards */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.price-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    z-index: 2;
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 900;
}

.price .period {
    font-size: 0.9rem;
    opacity: 0.9;
}

.price-body {
    padding: 30px;
}

.price-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.price-body ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.price-body ul li i {
    width: 20px;
}

.price-body ul li i.fa-check {
    color: #28a745;
}

.price-body ul li i.fa-times {
    color: #dc3545;
}

.price-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.price-note {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: var(--off-white);
    border-radius: 10px;
    color: var(--text-light);
}

.price-note i {
    color: var(--primary-color);
    margin-left: 10px;
}

/* Consultation CTA */
.consultation-cta {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('assets/images/backgrounds/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 150px;
}

/* FAQ Services */
.faq-services {
    background: var(--off-white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-toggle {
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 200px;
}

/* Responsive */
@media (max-width: 992px) {
    .intro-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .intro-stats {
        justify-content: center;
    }
    
    .process-grid,
    .price-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-tabs {
        border-radius: 20px;
    }
    
    .category-tab {
        width: 100%;
    }
    
    .process-grid,
    .price-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .price-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}
/* ===== CONTACT PAGE STYLES ===== */

/* Contact Cards */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--light-gray);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.card-details {
    margin-bottom: 25px;
}

.card-details p {
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.card-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.card-details a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.social-links-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.social-circle {
    width: 40px;
    height: 40px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition-fast);
    font-size: 1.1rem;
}

.social-circle:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.card-action {
    border-top: 1px solid var(--light-gray);
    padding-top: 20px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form .required {
    color: #dc3545;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.attachment label {
    cursor: pointer;
    background: var(--off-white);
    padding: 12px 15px;
    border-radius: 10px;
    border: 2px dashed var(--light-gray);
    text-align: center;
    transition: var(--transition-fast);
}

.attachment label:hover {
    border-color: var(--primary-color);
    background: rgba(184, 134, 11, 0.05);
}

.attachment label i {
    color: var(--primary-color);
    margin-left: 8px;
}

.attachment input[type="file"] {
    display: none;
}

.attachment small {
    display: block;
    margin-top: 5px;
    color: var(--text-light);
    font-size: 0.8rem;
}

.form-checkbox {
    margin: 20px 0;
}

.form-checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.form-captcha {
    margin-bottom: 25px;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--off-white);
    padding: 15px;
    border-radius: 10px;
}

.captcha-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid var(--light-gray);
}

.captcha-box .form-control {
    flex: 1;
    margin-bottom: 0;
}

.form-response {
    margin-top: 20px;
}

.alert {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Fast Contact */
.fast-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
    text-align: center;
}

.fast-contact h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.fast-contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.fast-whatsapp, .fast-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.fast-whatsapp {
    background: #25d366;
    color: white;
}

.fast-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

.fast-phone {
    background: var(--primary-color);
    color: white;
}

.fast-phone:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Map Wrapper */
.contact-map-wrapper {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container {
    height: 400px;
    width: 100%;
}

.office-selector {
    display: flex;
    gap: 10px;
    padding: 20px;
    background: var(--off-white);
    border-bottom: 1px solid var(--light-gray);
}

.office-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition-fast);
    border: 1px solid var(--light-gray);
}

.office-btn:hover {
    background: var(--primary-color);
    color: white;
}

.office-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.office-details {
    padding: 20px;
}

.office-details h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.office-details p {
    margin-bottom: 10px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-details i {
    width: 20px;
    color: var(--primary-color);
}

.office-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.office-details a:hover {
    text-decoration: underline;
}

.office-directions {
    margin-top: 15px;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Offices Showcase */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.office-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.office-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.office-card:hover .office-image img {
    transform: scale(1.1);
}

.office-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.office-content {
    padding: 25px;
}

.office-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.office-meta p {
    margin-bottom: 8px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-meta i {
    width: 20px;
    color: var(--primary-color);
}

.office-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.office-features span {
    background: var(--off-white);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.office-features i {
    color: var(--primary-color);
    margin-left: 5px;
}

.office-actions {
    display: flex;
    gap: 15px;
}

.office-actions .btn {
    flex: 1;
    text-align: center;
}

/* Hours Section */
.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hours-table {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 30px 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 25px;
    border-bottom: 1px solid var(--light-gray);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row.special {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.hours-row.special .day,
.hours-row.special .time {
    color: white;
}

.day {
    font-weight: 600;
}

.time {
    color: var(--text-light);
}

.emergency-note {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    border-right: 4px solid #ffc107;
}

.emergency-note i {
    font-size: 2rem;
    color: #ffc107;
}

.emergency-note p {
    color: #856404;
    margin: 0;
}

.emergency-note strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.hours-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

/* FAQ Contact */
.faq-contact-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-contact-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

.faq-contact-question {
    padding: 20px 25px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-contact-question:hover {
    background: var(--off-white);
}

.faq-contact-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-dark);
}

.faq-contact-question::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.faq-contact-item.active .faq-contact-question::after {
    transform: rotate(45deg);
}

.faq-contact-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
    color: var(--text-light);
    line-height: 1.8;
}

.faq-contact-item.active .faq-contact-answer {
    padding: 0 25px 20px;
    max-height: 300px;
}

.faq-contact-answer ul {
    margin: 10px 0 0 20px;
}

.faq-contact-answer li {
    margin-bottom: 5px;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('assets/images/backgrounds/cta-contact.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.cta-contact-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-contact-wrapper p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 30px;
    }
}

@media (max-width: 992px) {
    .contact-grid,
    .hours-grid,
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .hours-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .fast-contact-buttons {
        flex-direction: column;
    }
    
    .cta-contact-buttons {
        flex-direction: column;
    }
    
    .office-actions {
        flex-direction: column;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .office-selector {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .captcha-box {
        flex-direction: column;
    }
    
    .captcha-question {
        width: 100%;
        text-align: center;
    }
}
/* ===== CALCULATOR PAGE STYLES ===== */

/* Calculator Wrapper */
.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

/* Calculator Form */
.calculator-form {
    padding-left: 30px;
    border-left: 1px solid var(--light-gray);
}

.calculator-form .form-group {
    margin-bottom: 20px;
}

.calculator-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.calculator-note {
    margin-top: 25px;
    padding: 15px;
    background: #fff3cd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #856404;
    border-right: 4px solid #ffc107;
}

.calculator-note i {
    font-size: 1.2rem;
}

.calculator-note p {
    margin: 0;
    font-size: 0.9rem;
}

/* Calculator Result */
.calculator-result {
    position: relative;
}

.result-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-bottom: 25px;
}

.result-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    padding-bottom: 15px;
    border-bottom: 2px dashed var(--primary-color);
}

.result-placeholder {
    padding: 40px 20px;
    color: var(--text-light);
}

.result-placeholder i {
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.result-amount {
    padding: 20px;
}

.result-amount .amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    line-height: 1.2;
}

.result-amount .note {
    color: var(--text-light);
    font-size: 0.9rem;
}

.result-breakdown {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    text-align: right;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--text-light);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item.urgent {
    color: #dc3545;
    font-weight: 600;
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0 5px;
    margin-top: 10px;
    border-top: 2px solid var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.result-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.result-actions .btn {
    flex: 1;
}

/* Price Range Info */
.price-range-info {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid var(--light-gray);
}

.price-range-info h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.price-range-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.price-range-info li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed var(--light-gray);
}

.price-range-info li:last-child {
    border-bottom: none;
}

.service-name {
    color: var(--text-light);
}

.price-range {
    font-weight: 600;
    color: var(--primary-color);
}

/* Factors Grid */
.factors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.factor-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 1px solid var(--light-gray);
}

.factor-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.factor-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.factor-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.factor-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Price Table */
.table-responsive {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.price-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.price-table th {
    padding: 15px 20px;
    font-weight: 600;
    text-align: center;
}

.price-table td {
    padding: 12px 20px;
    border-bottom: 1px solid var(--light-gray);
    text-align: center;
}

.price-table tr:hover {
    background: var(--off-white);
}

.price-table td:first-child {
    font-weight: 600;
    text-align: right;
}

.price-table .btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.table-note {
    margin-top: 20px;
    padding: 15px;
    background: #e7f3ff;
    border-radius: 10px;
    color: #004085;
    border-right: 4px solid #007bff;
}

.table-note i {
    margin-left: 8px;
}

/* FAQ Calculator */
.faq-grid-calculator {
    max-width: 800px;
    margin: 0 auto;
}

.faq-calc-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

.faq-calc-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-calc-question:hover {
    background: var(--off-white);
}

.faq-calc-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-calc-toggle {
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.faq-calc-item.active .faq-calc-toggle {
    transform: rotate(45deg);
}

.faq-calc-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
    color: var(--text-light);
    line-height: 1.8;
}

.faq-calc-item.active .faq-calc-answer {
    padding: 0 25px 20px;
    max-height: 300px;
}

.faq-calc-answer ul {
    margin: 10px 0 10px 20px;
}

.faq-calc-answer li {
    margin-bottom: 5px;
}

/* Calculator CTA */
.calculator-cta {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('assets/images/backgrounds/calculator-cta.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.cta-calculator-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-calculator-wrapper p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-calculator-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1200px) {
    .factors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }
    
    .calculator-form {
        padding-left: 0;
        border-left: none;
        border-bottom: 1px solid var(--light-gray);
        padding-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .factors-grid {
        grid-template-columns: 1fr;
    }
    
    .result-actions {
        flex-direction: column;
    }
    
    .cta-calculator-buttons {
        flex-direction: column;
    }
    
    .price-table {
        font-size: 0.9rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .calculator-wrapper {
        padding: 20px;
    }
    
    .result-amount .amount {
        font-size: 2.5rem;
    }
    
    .breakdown-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
/* ===== FAQ PAGE STYLES ===== */

/* FAQ Search */
.faq-search-section {
    padding: 40px 0;
}

.faq-search-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.faq-search-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.search-box {
    position: relative;
    margin-bottom: 10px;
}

.search-box .search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    z-index: 1;
}

.search-box input {
    padding-right: 50px;
    height: 60px;
    font-size: 1.1rem;
    border-radius: 30px;
    border: 2px solid var(--light-gray);
    transition: var(--transition-normal);
}

.search-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1);
}

.search-hint {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* FAQ Tabs */
.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
    background: var(--white);
    padding: 15px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}

.faq-tab {
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.faq-tab:hover {
    color: var(--primary-color);
    background: var(--off-white);
}

.faq-tab.active {
    background: var(--primary-color);
    color: var(--white);
}

/* FAQ Category Sections */
.faq-category-section {
    margin-bottom: 40px;
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-title i {
    font-size: 1.8rem;
}

/* FAQ Items */
.faq-item {
    background: var(--off-white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition-fast);
    background: var(--white);
}

.faq-question:hover {
    background: rgba(184, 134, 11, 0.05);
}

.faq-question h4 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-dark);
    flex: 1;
}

.faq-toggle {
    color: var(--primary-color);
    transition: var(--transition-fast);
    font-size: 1.1rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--off-white);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: var(--white);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
    color: var(--text-light);
    line-height: 1.8;
    background: var(--white);
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-answer ul {
    margin: 10px 0 10px 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer strong {
    color: var(--primary-color);
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Statistics */
.faq-stats {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.stats-grid-small {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item-small {
    padding: 20px;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Still Have Questions */
.still-questions {
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('assets/images/backgrounds/questions-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.questions-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.questions-wrapper p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.questions-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.response-time {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
}

.response-time i {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .stats-grid-small {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-tabs {
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .faq-tab {
        width: 100%;
        text-align: center;
    }
    
    .faq-category-section {
        padding: 20px;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .questions-buttons {
        flex-direction: column;
    }
    
    .questions-buttons .btn {
        width: 100%;
    }
    
    .stats-grid-small {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item-small {
        padding: 15px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-search-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .search-box input {
        height: 50px;
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
}
/* ===== CONSULTATION PAGE STYLES ===== */

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.option-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    border: 2px solid transparent;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.option-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
}

.option-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.option-card.selected {
    border-color: var(--primary-color);
    background: rgba(184, 134, 11, 0.05);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
}

.option-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.option-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.option-features {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
    text-align: right;
}

.option-features li {
    margin-bottom: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.option-features i {
    color: var(--primary-color);
    width: 20px;
}

.option-price {
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.option-price .price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    line-height: 1.2;
}

.option-price .price-note {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.booking-wrapper {
    background: var(--white);
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--shadow-xl);
    max-width: 900px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.booking-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px dashed var(--light-gray);
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group .required {
    color: #dc3545;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.attachment label {
    cursor: pointer;
    background: var(--off-white);
    padding: 12px 15px;
    border-radius: 10px;
    border: 2px dashed var(--light-gray);
    text-align: center;
    transition: var(--transition-fast);
    display: block;
}

.attachment label:hover {
    border-color: var(--primary-color);
    background: rgba(184, 134, 11, 0.05);
}

.attachment label i {
    color: var(--primary-color);
    margin-left: 8px;
}

.attachment input[type="file"] {
    display: none;
}

.attachment small {
    display: block;
    margin-top: 8px;
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Summary */
.booking-summary {
    background: var(--off-white);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.booking-summary h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.summary-details {
    margin-bottom: 20px;
}

.summary-details p {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    margin: 0;
}

.summary-details p:last-child {
    border-bottom: none;
}

.summary-details span:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.summary-details span:last-child {
    color: var(--primary-color);
}

.summary-total {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.summary-total p {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.summary-total span {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.summary-total .note {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Form Actions */
.form-actions {
    margin-top: 30px;
}

.form-response {
    margin-top: 20px;
}

.alert {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Prepare Section */
.prepare-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.prepare-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.prepare-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.prepare-icon {
    width: 70px;
    height: 70px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition-normal);
}

.prepare-item:hover .prepare-icon {
    background: var(--primary-color);
    color: var(--white);
}

.prepare-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.prepare-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Testimonials Short */
.testimonials-short-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.testimonial-short-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--light-gray);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-short-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .options-grid,
    .prepare-grid,
    .testimonials-short-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .option-card.featured {
        transform: scale(1);
    }
    
    .option-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .booking-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .options-grid,
    .prepare-grid,
    .testimonials-short-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-header h2 {
        font-size: 1.5rem;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
    }
    
    .summary-details p {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .booking-wrapper {
        padding: 20px;
    }
    
    .option-card {
        padding: 30px 20px;
    }
    
    .option-price .price {
        font-size: 1.5rem;
    }
}
/* ===== AREAS PAGE STYLES ===== */

/* Offices Showcase Grid */
.offices-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 50px;
}

.office-large-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
    border: 1px solid var(--light-gray);
}

.office-large-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.office-large-header {
    padding: 40px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.office-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.office-large-header h2 {
    font-size: 2rem;
    margin: 0;
}

.office-badge {
    position: absolute;
    left: 40px;
    top: 40px;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.office-large-content {
    padding: 40px;
}

/* Gallery */
.office-gallery {
    margin-bottom: 30px;
}

.gallery-main {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-lg);
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-thumbs img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-fast);
    opacity: 0.7;
    border: 2px solid transparent;
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active {
    opacity: 1;
    border-color: var(--primary-color);
}

/* Office Details Grid */
.office-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    gap: 15px;
    background: var(--off-white);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--light-gray);
}

.detail-item.full-width {
    grid-column: 1 / -1;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 30px;
}

.detail-item h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.detail-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

.detail-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.detail-item a:hover {
    text-decoration: underline;
}

.detail-item small {
    display: block;
    color: var(--text-lighter);
    margin-top: 5px;
}

/* Lawyers List */
.lawyers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.lawyer-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
}

.lawyer-tag img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.lawyer-tag span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Office Actions Grid */
.office-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

/* Map Section */
.areas-map-section {
    position: relative;
}

.map-wrapper {
    background: var(--white);
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow-xl);
}

.map-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 25px 0;
}

.map-control-btn {
    padding: 10px 25px;
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition-fast);
}

.map-control-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.map-control-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.map-directions {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px dashed var(--light-gray);
}

.map-directions h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.directions-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.directions-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
}

.directions-form button {
    padding: 12px 25px;
    white-space: nowrap;
}

.directions-panel {
    max-height: 300px;
    overflow-y: auto;
    background: var(--off-white);
    border-radius: 10px;
    padding: 15px;
    font-size: 0.9rem;
}

/* Areas Covered */
.areas-grid-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.area-region {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-gray);
}

.area-region.full-width {
    grid-column: 1 / -1;
}

.area-region h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-tag {
    background: var(--off-white);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-light);
    border: 1px solid var(--light-gray);
    transition: var(--transition-fast);
}

.area-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.courts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.court-item {
    background: var(--off-white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--light-gray);
}

.court-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.court-item span {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.court-item small {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Why Two Offices */
.two-offices-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.two-offices-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.two-offices-content > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.benefit-item {
    text-align: center;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.5rem;
}

.benefit-item h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.two-offices-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
}

/* Location Testimonials */
.location-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.location-testimonial-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1px solid var(--light-gray);
}

.location-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.location-badge.ajman {
    background: var(--primary-color);
    color: var(--white);
}

.location-badge.abudhabi {
    background: var(--secondary-color);
    color: var(--white);
}

.location-badge.both {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.testimonial-content {
    padding: 40px 30px 30px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    color: var(--light-gray);
    opacity: 0.3;
}

.testimonial-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-client img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-client h5 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.testimonial-client p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Visit CTA */
.visit-cta {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('assets/images/backgrounds/visit-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.visit-cta-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.visit-cta-wrapper p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.visit-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.visit-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 1200px) {
    .courts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .office-details-grid {
        grid-template-columns: 1fr;
    }
    
    .office-actions-grid {
        grid-template-columns: 1fr;
    }
    
    .two-offices-wrapper {
        grid-template-columns: 1fr;
    }
    
    .two-offices-image {
        order: -1;
    }
    
    .areas-grid-full {
        grid-template-columns: 1fr;
    }
    
    .location-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .office-large-header {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .office-badge {
        position: relative;
        top: 0;
        left: 0;
        margin-top: 10px;
    }
    
    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-main {
        height: 250px;
    }
    
    .map-controls {
        flex-direction: column;
    }
    
    .directions-form {
        flex-direction: column;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .courts-grid {
        grid-template-columns: 1fr;
    }
    
    .location-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .visit-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .office-large-content {
        padding: 20px;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
    }
    
    .lawyers-list {
        justify-content: center;
    }
    
    .gallery-thumbs {
        grid-template-columns: 1fr;
    }
    
    .gallery-thumbs img {
        height: 80px;
    }
}
/* ===== BLOG PAGE STYLES ===== */

/* Blog Filters */
.blog-filters {
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
}

.filters-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-search {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.search-box input {
    padding-right: 45px;
    height: 50px;
    border-radius: 25px;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.category-filter {
    padding: 8px 20px;
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.category-filter:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.category-filter.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.blog-sort {
    max-width: 200px;
    margin: 0 auto;
}

/* Featured Post */
.featured-post {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px 0;
}

.featured-wrapper {
    position: relative;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.featured-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-category {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.9);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.featured-text {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-text .post-meta {
    margin-bottom: 20px;
}

.featured-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.featured-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.post-tag {
    background: var(--off-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
    border: 1px solid var(--light-gray);
}

/* Blog Grid */
.blog-grid-section {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Blog Card Enhancements */
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 1px solid var(--light-gray);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.8rem;
    flex-wrap: wrap;
}

.blog-meta i {
    margin-left: 5px;
    color: var(--primary-color);
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.5;
    font-weight: 700;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-stats {
    display: flex;
    gap: 15px;
    color: var(--text-light);
    font-size: 0.8rem;
}

.post-stats i {
    margin-left: 5px;
    color: var(--primary-color);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-fast);
}

.read-more:hover {
    gap: 10px;
}

/* Load More Button */
.blog-load-more {
    text-align: center;
    margin-top: 20px;
}

.btn-success {
    background: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background: #218838;
}

/* Popular Posts */
.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.popular-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 15px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    border: 1px solid var(--light-gray);
}

.popular-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.popular-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-content {
    flex: 1;
}

.popular-category {
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.popular-content h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.popular-meta {
    display: flex;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.7rem;
}

.popular-meta i {
    color: var(--primary-color);
    margin-left: 3px;
}

/* Blog Newsletter */
.blog-newsletter {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.newsletter-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.newsletter-form {
    flex: 1;
    max-width: 400px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.newsletter-form .checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    opacity: 0.9;
}

.newsletter-form .checkbox input {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .featured-content {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        min-height: 300px;
    }
    
    .featured-text {
        padding: 30px;
    }
    
    .featured-text h2 {
        font-size: 1.5rem;
    }
    
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .popular-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-categories {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-filter {
        width: 100%;
        text-align: center;
    }
    
    .blog-sort {
        max-width: 100%;
    }
    
    .featured-text h2 {
        font-size: 1.3rem;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .post-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .popular-card {
        flex-direction: column;
        text-align: center;
    }
    
    .popular-image {
        width: 100%;
        height: 150px;
    }
}
/* ===== ATTORNEYS PAGE STYLES ===== */

/* Team Stats */
.team-stats {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    padding: 30px;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Founder Section */
.founder-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
    background: var(--white);
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--shadow-xl);
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.founder-experience {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.founder-experience .years {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.founder-experience .text {
    font-size: 0.8rem;
    opacity: 0.9;
}

.founder-title {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.founder-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.founder-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.badge {
    background: var(--off-white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--primary-color);
    border: 1px solid var(--light-gray);
}

.badge i {
    margin-left: 5px;
}

.founder-bio {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.founder-credentials {
    background: var(--off-white);
    padding: 20px;
    border-radius: 15px;
    margin: 25px 0;
    border-right: 4px solid var(--primary-color);
}

.founder-credentials h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.founder-credentials ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.founder-credentials li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.founder-credentials i {
    color: var(--primary-color);
    width: 20px;
}

.founder-contact {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.founder-social {
    display: flex;
    gap: 10px;
}

.founder-social a {
    width: 40px;
    height: 40px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition-fast);
    border: 1px solid var(--light-gray);
}

.founder-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Team Filters */
.team-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 40px 0;
}

.team-filter {
    padding: 10px 25px;
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition-fast);
}

.team-filter:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.team-filter.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Team Members Grid */
.team-members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 1px solid var(--light-gray);
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-member-card:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-normal);
    z-index: 2;
}

.team-member-card:hover .member-social {
    bottom: 20px;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.member-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.member-office {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.9);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.member-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.member-bio {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 0.9rem;
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.specialty {
    background: var(--off-white);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    color: var(--text-dark);
    border: 1px solid var(--light-gray);
}

.member-actions {
    display: flex;
    gap: 10px;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.8rem;
}

/* Office Distribution */
.distribution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.office-stat-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-gray);
}

.office-stat-header {
    padding: 25px;
    color: var(--white);
    text-align: center;
}

.office-stat-header i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.office-stat-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.office-stat-content {
    padding: 25px;
    text-align: center;
}

.office-stat-content .stat-number {
    font-size: 3rem;
    color: var(--primary-color);
}

.member-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    text-align: right;
}

.member-list li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.member-list li:last-child {
    border-bottom: none;
}

.member-list i {
    color: var(--primary-color);
    width: 20px;
}

.office-contact {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.office-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Join Team */
.join-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--shadow-xl);
}

.join-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.join-content > p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.join-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.join-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.join-feature i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.join-feature span {
    color: var(--text-dark);
}

.join-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Team Testimonials */
.team-testimonials {
    background: var(--off-white);
}

.team-testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    margin: 15px;
    border: 1px solid var(--light-gray);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    color: var(--light-gray);
    opacity: 0.3;
}

.team-testimonial-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.team-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.team-testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.team-testimonial-author h5 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.team-testimonial-author p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 50px auto;
    padding: 30px;
    border-radius: 20px;
    max-width: 800px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-member {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
}

.modal-member-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.modal-member-info h2 {
    margin-bottom: 10px;
}

.modal-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.modal-bio {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.modal-details {
    background: var(--off-white);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.modal-detail {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-detail i {
    color: var(--primary-color);
    width: 20px;
}

.modal-specialties h4 {
    margin-bottom: 10px;
}

.specialties-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.specialty-tag {
    background: var(--off-white);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    color: var(--text-dark);
    border: 1px solid var(--light-gray);
}

.modal-contact {
    background: var(--off-white);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.modal-contact h4 {
    margin-bottom: 10px;
}

.modal-contact p {
    margin-bottom: 5px;
}

.modal-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

.modal-actions {
    display: flex;
    gap: 15px;
}

/* Responsive */
@media (max-width: 1200px) {
    .team-members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founder-wrapper,
    .join-wrapper,
    .modal-member {
        grid-template-columns: 1fr;
    }
    
    .founder-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .distribution-grid {
        grid-template-columns: 1fr;
    }
    
    .modal {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-members-grid {
        grid-template-columns: 1fr;
    }
    
    .team-filters {
        flex-direction: column;
    }
    
    .team-filter {
        width: 100%;
        text-align: center;
    }
    
    .join-features {
        grid-template-columns: 1fr;
    }
    
    .founder-contact {
        flex-direction: column;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .founder-wrapper,
    .join-wrapper {
        padding: 20px;
    }
    
    .member-actions {
        flex-direction: column;
    }
    
    .member-actions .btn {
        width: 100%;
        text-align: center;
    }
}



/* إزالة أي ارتفاع أو هوامش والحفاظ على الأداة عائمة دون أثر */
.elfsight-app-2a588708-9bb9-4233-943a-03827d003eca {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 9999 !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

/* إذا ظهرت الأداة بشكل غير صحيح كعنوان عائم، يمكنك ضبط الأبعاد */
.elfsight-app-2a588708-9bb9-4233-943a-03827d003eca iframe {
    max-width: 350px !important;
    max-height: 600px !important;
}