/* Professional Elegant Lawyer Website CSS */

:root {
    /* Primary Colors - Elegant Navy & Gold */
    --primary-color: #1a365d;
    --primary-light: #2d4a6b;
    --primary-dark: #0f2a44;
    --accent-color: #b8860b;
    --accent-light: #daa520;
    --accent-dark: #9a7209;

    /* Neutral Colors */
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-light: #a0aec0;
    --text-white: #ffffff;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-tertiary: #edf2f7;
    --bg-dark: #1a202c;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2d4a6b 100%);
    --gradient-accent: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
    --gradient-light: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);

    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.16);

    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Typography */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;

    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    --line-height-tight: 1.25;
    --line-height-snug: 1.375;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;
    --line-height-loose: 2;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: var(--line-height-relaxed);
    overflow-x: hidden;
    background-color: var(--bg-primary);
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
    letter-spacing: -0.01em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px;
    /* Space for fixed navbar */
}

/* Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-4);
    letter-spacing: -0.025em;
    color: var(--text-primary);
}

h1 {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-tight);
}

h2 {
    font-size: var(--font-size-4xl);
    position: relative;
    margin-bottom: var(--space-6);
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    margin: var(--space-4) auto 0;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

h2.text-start::after {
    margin-right: auto;
    margin-left: 0;
}

h3 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-semibold);
}

h4 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
}

h5 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
}

h6 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
}

.section-title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-6);
    text-align: center;
}

p {
    margin-bottom: var(--space-6);
    line-height: var(--line-height-relaxed);
    color: var(--text-secondary);
}

.lead {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-relaxed);
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-normal);
    position: relative;
}

a:hover {
    color: var(--primary-dark);
}

section {
    padding: var(--space-20) 0;
    position: relative;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

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

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

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

.bg-primary {
    background: var(--gradient-primary) !important;
}

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

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

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

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

/* Button Styles - Elegant & Professional */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    padding: var(--space-3) var(--space-6);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--gradient-accent);
    color: var(--text-primary);
    border-color: var(--accent-color);
}

.btn-secondary:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-primary);
}

.btn-outline-secondary {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-1px);
}

.btn-dark {
    background: var(--bg-dark);
    color: white;
    border-color: var(--bg-dark);
}

.btn-dark:hover {
    background: var(--text-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-light {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--bg-tertiary);
}

.btn-light:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-xs);
}

.btn i {
    margin-left: var(--space-2);
}

.btn i:first-child {
    margin-left: 0;
    margin-right: var(--space-2);
}

/* Navigation - Clean & Professional */
.navbar {
    padding: var(--space-4) 0;
    transition: var(--transition-normal);
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--bg-tertiary);
}

.navbar.scrolled {
    padding: var(--space-3) 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98) !important;
}

.navbar-brand {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
    transition: var(--transition-normal);
}

.navbar-brand:hover {
    color: var(--primary-dark) !important;
}

.navbar-brand i {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: var(--space-2);
    font-size: var(--font-size-3xl);
    filter: drop-shadow(0 1px 2px rgba(184, 134, 11, 0.2));
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
    padding: var(--space-2) var(--space-4) !important;
    margin: 0 var(--space-1);
    position: relative;
    transition: var(--transition-normal);
    letter-spacing: 0.01em;
    border-radius: var(--radius-md);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
    transform: translateX(-50%);
    border-radius: var(--radius-full);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background-color: var(--bg-secondary);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    padding: var(--space-2);
    margin-top: var(--space-2);
    background: var(--bg-primary);
}

.dropdown-item {
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background-color: var(--bg-secondary);
    color: var(--primary-color);
}

/* Hero Section - Elegant & Clean */
.hero-section {
    background: var(--gradient-light);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-24) 0 var(--space-20);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(26, 54, 93, 0.08) 0%, rgba(26, 54, 93, 0) 60%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to top, var(--bg-secondary) 0%, transparent 100%);
    z-index: 1;
}

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

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    line-height: var(--line-height-tight);
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    font-weight: var(--font-weight-normal);
    margin-bottom: var(--space-8);
    line-height: var(--line-height-relaxed);
    max-width: 600px;
}

.hero-image {
    position: relative;
    z-index: 2;
    transition: var(--transition-slow);
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
}

.hero-image:hover img {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Service Cards - Clean & Professional */

/* Horizontal Services Container */
.services-horizontal-container {
    position: relative;
    overflow: hidden;
    margin: 0 -15px;
}

.services-horizontal-scroll {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    overflow-y: hidden;
    padding: var(--space-4) var(--space-4) var(--space-8);
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-tertiary);
}

.services-horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.services-horizontal-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.service-card-horizontal {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--bg-tertiary);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

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

.service-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.service-card-horizontal .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-3xl);
    color: white;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.service-card-horizontal:hover .service-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.service-card-horizontal .service-icon i {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card-horizontal .service-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    letter-spacing: -0.01em;
}

.service-card-horizontal .service-description {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-4);
    flex-grow: 1;
}

/* .breadcrumb {
    background: var(--bg-secondary);
    padding: var(--space-4) 0;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-8);
} */

.breadcrumb-item+.breadcrumb-item::before {
    content: '>';
    margin-left: var(--space-4);
    margin-right: var(--space-4);
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item {
    color: #ffffff;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    transition: var(--transition-normal);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-normal);
}

.breadcrumb-item a:hover {
    color: var(--accent-light);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.breadcrumb-item.active {
    color: var(--text-white);
    font-weight: var(--font-weight-bold);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.service-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--bg-tertiary);
    height: 100%;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-3xl);
    color: white;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.service-icon i {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    letter-spacing: -0.01em;
}

.service-description {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-4);
}

/* Statistics Section - Clean & Professional */
.stats-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-tertiary);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    height: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stats-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    opacity: 0.08;
    border-radius: 50%;
    transform: translate(40%, -40%);
}

.stats-number {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--primary-color);
    margin-bottom: var(--space-3);
    line-height: var(--line-height-tight);
    position: relative;
    z-index: 1;
}

.stats-label {
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    position: relative;
    z-index: 1;
    text-align: center;
}

/* FAQ Section - Clean & Professional */
.faq-item {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-tertiary);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-light);
}

.faq-question {
    background: var(--bg-primary);
    padding: var(--space-6);
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: right;
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-lg);
    color: var(--text-primary);
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 var(--space-6) var(--space-6);
    color: var(--text-secondary);
    border-top: none;
    background: var(--bg-primary);
    line-height: var(--line-height-relaxed);
}

.accordion-item {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-tertiary);
    margin-bottom: var(--space-4);
    transition: var(--transition-normal);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.accordion-button {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-lg);
    color: var(--text-primary);
    background: var(--bg-primary);
    border: none;
    padding: var(--space-6);
    transition: var(--transition-normal);
}

.accordion-button:not(.collapsed) {
    background: var(--bg-secondary);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button::after {
    display: none;
}

.faq-chevron {
    transition: transform 0.3s ease-in-out;
    margin-right: auto;
    padding-left: var(--space-4);
    color: var(--text-muted);
}

.accordion-button:not(.collapsed) .faq-chevron {
    transform: rotate(-180deg);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
    border-color: var(--primary-color);
}

.accordion-body {
    background: var(--bg-primary);
    padding: 0 var(--space-6) var(--space-6);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
}

/* Contact Form - Clean & Professional */
.contact-form {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-12);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--bg-tertiary);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(30%, 30%);
    z-index: 0;
}

.contact-info {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    height: 100%;
}

.contact-item {
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--bg-tertiary);
}

.contact-item:last-child {
    border-bottom: none;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-sm);
}

.form-floating {
    margin-bottom: var(--space-6);
}

.form-control {
    border-radius: var(--radius-lg);
    border: 2px solid var(--bg-tertiary);
    padding: var(--space-4);
    transition: var(--transition-normal);
    background-color: var(--bg-secondary);
    font-size: var(--font-size-base);
    color: var(--text-primary);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
    background-color: var(--bg-primary);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-2);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Footer - Professional & Clean */
footer {
    background: var(--bg-dark) !important;
    position: relative;
    overflow: hidden;
    color: white;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    box-shadow: var(--shadow-sm);
}

.footer-logo {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
    color: white;
}

.footer-logo i {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: var(--space-2);
}

.text-light-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
    text-decoration: none;
}

footer a:hover {
    color: var(--accent-light);
    text-decoration: none;
    transform: translateX(-2px);
}

footer h6 {
    color: white;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-4);
    font-size: var(--font-size-lg);
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    margin-right: var(--space-3);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

footer .social-links a:hover {
    background: var(--gradient-accent);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

footer .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-3);
    color: rgba(255, 255, 255, 0.8);
    border-bottom: none;
    padding: 3px;
}

footer .contact-item:last-child {
    margin-bottom: 0;
}

footer .contact-item i {
    color: var(--accent-light);
    margin-left: var(--space-3);
    width: 20px;
    text-align: center;
}

footer ul li {
    margin-bottom: var(--space-2);
}

footer ul li a {
    display: flex;
    align-items: center;
    padding: var(--space-1) 0;
}

footer ul li a i {
    margin-left: var(--space-2);
    color: var(--accent-light);
    width: 16px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fade-in-right {
    animation: fadeInRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.zoom-in {
    animation: zoomIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Loading effects */
.loading {
    opacity: 0;
}

.loading.loaded {
    opacity: 1;
}

/* Staggered animation delays */
.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

.stagger-6 {
    animation-delay: 0.6s;
}

/* Page Header - Elegant Gold on Navy Background */
.page-header {
    background: linear-gradient(135deg, #1a365d 0%, #2d4a6b 50%, #1a365d 100%);
    padding: var(--space-24) 0 var(--space-16);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--accent-color);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, rgba(184, 134, 11, 0) 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, rgba(184, 134, 11, 0) 70%);
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.page-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
    color: var(--accent-light);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.page-subtitle {
    font-size: var(--font-size-xl);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: var(--line-height-relaxed);
    font-weight: var(--font-weight-normal);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Call to Action Section - Elegant & Professional */
.cta-section {
    background: var(--gradient-accent);
    padding: var(--space-20) 0;
    position: relative;
    overflow: hidden;
    color: var(--text-primary);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.cta-section h2 {
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.cta-section p {
    color: var(--text-primary);
    opacity: 0.8;
}

/* Testimonials */
.card {
    border: none;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Styles */
@media (max-width: 992px) {

    h1,
    .hero-title {
        font-size: var(--font-size-4xl);
    }

    h2,
    .section-title {
        font-size: var(--font-size-3xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-lg);
    }

    section {
        padding: var(--space-16) 0;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: var(--space-5);
        margin-top: var(--space-4);
    }

    .hero-section {
        padding: var(--space-20) 0 var(--space-16);
    }

    .service-card {
        padding: var(--space-6);
    }

    .stats-card {
        padding: var(--space-6);
    }

    .service-card-horizontal {
        min-width: 280px;
        max-width: 280px;
        padding: var(--space-6);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 90px;
        /* Increased space for mobile navbar */
    }

    h1,
    .hero-title {
        font-size: var(--font-size-3xl);
    }

    h2,
    .section-title {
        font-size: var(--font-size-2xl);
    }

    .hero-section {
        min-height: auto;
        padding: var(--space-16) 0 var(--space-12);
        text-align: center;
    }

    .hero-title {
        margin-bottom: var(--space-4);
    }

    .hero-subtitle {
        margin-bottom: var(--space-6);
    }

    .service-card {
        margin-bottom: var(--space-6);
        padding: var(--space-6);
    }

    .page-header {
        padding: var(--space-16) 0 var(--space-12);
    }

    .page-title {
        font-size: var(--font-size-3xl);
    }

    .contact-form {
        padding: var(--space-8);
    }

    .navbar {
        padding: var(--space-3) 0;
    }

    /* Ensure navbar doesn't overlap content on mobile */
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: var(--space-5);
        margin-top: var(--space-4);
        border: 1px solid var(--bg-tertiary);
    }
}

@media (max-width: 576px) {

    h1,
    .hero-title {
        font-size: var(--font-size-2xl);
    }

    h2,
    .section-title {
        font-size: var(--font-size-xl);
    }

    .btn-lg {
        padding: var(--space-3) var(--space-6);
        font-size: var(--font-size-base);
    }

    .hero-section {
        padding: var(--space-12) 0 var(--space-10);
    }

    .hero-image {
        margin-top: var(--space-8);
    }

    .contact-form {
        padding: var(--space-6);
    }

    .page-header {
        padding: var(--space-12) 0 var(--space-8);
    }

    .service-card {
        padding: var(--space-5);
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: var(--font-size-2xl);
    }

    .stats-card {
        padding: var(--space-5);
    }

    .stats-number {
        font-size: var(--font-size-4xl);
    }

    section {
        padding: var(--space-12) 0;
    }
}

/* Additional Professional Enhancements */
.section-intro {
    max-width: 800px;
    margin: 0 auto var(--space-12);
    text-align: center;
}

.divider {
    height: 3px;
    width: 60px;
    background: var(--gradient-accent);
    margin: var(--space-6) auto;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.divider.divider-sm {
    width: 40px;
    height: 2px;
    margin: var(--space-4) auto;
}

.card-hover-effect {
    transition: var(--transition-normal);
}

.card-hover-effect:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* Professional image treatment */
.img-professional {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.img-professional:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Badge Styles */
.badge {
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-xs);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
}

.badge.bg-primary {
    background: var(--gradient-primary) !important;
    color: white;
}

.badge.bg-warning {
    background: var(--gradient-accent) !important;
    color: var(--text-primary);
}

/* Alert Styles */
.alert {
    border-radius: var(--radius-lg);
    border: none;
    padding: var(--space-4) var(--space-6);
    margin-bottom: var(--space-4);
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

/* Custom scroll bar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Loading Spinner */
.spinner-border {
    width: 2rem;
    height: 2rem;
    border: 0.25em solid var(--bg-tertiary);
    border-right-color: var(--primary-color);
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

/* Smooth Focus Styles */
*:focus {
    outline: none;
}

.btn:focus,
.form-control:focus,
.nav-link:focus {
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.15);
}

/* Print Styles */
@media print {

    .navbar,
    .back-to-top,
    .btn,
    footer {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .hero-section,
    .cta-section,
    .page-header {
        background: white !important;
        color: black !important;
    }
}

/* ===
== ELEGANT HERO SECTION STYLES ===== */

/* Hero Section - Elegant & Clean Design */
.hero-section-elegant {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-20) 0;
}

.min-vh-90 {
    min-height: 90vh;
}

/* Hero Content */
.hero-content-elegant {
    position: relative;
    z-index: 10;
    padding: var(--space-8) 0;
}

/* Elegant Badge */
.hero-badge {
    margin-bottom: var(--space-6);
}

.badge-elegant {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.badge-elegant:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Title */
.hero-title-elegant {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-tight);
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

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

/* Hero Subtitle */
.hero-subtitle-elegant {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-8);
    max-width: 600px;
    font-weight: var(--font-weight-normal);
}

/* Hero Features */
.hero-features {
    margin-bottom: var(--space-10);
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-4);
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
}

.feature-item i {
    font-size: var(--font-size-lg);
    margin-left: var(--space-3);
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    align-items: center;
}

.btn-elegant-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-elegant-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn-elegant-primary:hover::before {
    left: 100%;
}

.btn-elegant-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.btn-elegant-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--primary-color);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    transition: var(--transition-normal);
    position: relative;
}

.btn-elegant-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Image Section */
.hero-image-elegant {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Main Hero Image - Transparent Background */
.hero-main-image {
    width: 100%;
    height: auto;
    max-width: 450px;
    border-radius: var(--radius-xl);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transition: var(--transition-slow);
    background: transparent;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.hero-main-image:hover {
    transform: translateY(-10px) scale(1.02);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    min-width: 200px;
    z-index: 10;
    transition: var(--transition-normal);
}

.floating-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.floating-card-1 {
    top: 10%;
    right: -10%;
    animation: float 6s ease-in-out infinite;
}

.floating-card-2 {
    bottom: 20%;
    left: -15%;
    animation: float 6s ease-in-out infinite 2s;
}

.floating-card-3 {
    top: 60%;
    right: -20%;
    animation: float 6s ease-in-out infinite 4s;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-lg);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.card-content h6 {
    margin: 0 0 var(--space-1) 0;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
}

.card-content p {
    margin: 0;
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    line-height: var(--line-height-normal);
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1) 0%, rgba(26, 54, 93, 0.05) 100%);
    animation: pulse 4s ease-in-out infinite;
}

.decoration-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.decoration-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    animation-delay: 2s;
}

.decoration-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-image: radial-gradient(circle, rgba(26, 54, 93, 0.1) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(218, 165, 32, 0.05) 100%);
}

.bg-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

.bg-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation: float 8s ease-in-out infinite 4s;
}

.bg-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(26, 54, 93, 0.05) 0%, transparent 50%);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section-elegant {
        padding: var(--space-16) 0;
        min-height: auto;
    }

    .hero-content-elegant {
        text-align: center;
        margin-bottom: var(--space-8);
    }

    .hero-title-elegant {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hero-subtitle-elegant {
        font-size: var(--font-size-lg);
    }

    .floating-card {
        display: none;
    }

    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section-elegant {
        padding: var(--space-12) 0;
    }

    .hero-title-elegant {
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
        margin-bottom: var(--space-4);
    }

    .hero-subtitle-elegant {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-6);
    }

    .hero-features {
        margin-bottom: var(--space-6);
    }

    .feature-item {
        margin-bottom: var(--space-3);
        font-size: var(--font-size-sm);
    }

    .btn-elegant-primary,
    .btn-elegant-secondary {
        padding: var(--space-3) var(--space-6);
        font-size: var(--font-size-sm);
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-3);
    }

    .hero-main-image {
        max-width: 350px;
        margin: var(--space-6) auto 0 auto;
        display: block;
    }

    .hero-image-elegant {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-section-elegant {
        padding: var(--space-10) 0;
    }

    .hero-title-elegant {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }

    .hero-subtitle-elegant {
        font-size: var(--font-size-sm);
    }

    .badge-elegant {
        font-size: var(--font-size-xs);
        padding: var(--space-2) var(--space-4);
    }

    .hero-main-image {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    .bg-shape-1,
    .bg-shape-2 {
        display: none;
    }
}

/* Enhanced Stagger Animations */
.stagger-7 {
    animation-delay: 0.7s;
}

.stagger-8 {
    animation-delay: 0.8s;
}

/* Professional Image Treatment for Hero */
.hero-main-image {
    /* Remove any background and ensure transparency */
    background: transparent !important;
    /* Add subtle professional styling */
    position: relative;
}

.hero-main-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-slow);
}

.image-container:hover .hero-main-image::before {
    opacity: 1;
}

/* Smooth Loading Animation */
.hero-section-elegant * {
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-section-elegant.loaded * {
    opacity: 1;
}

.office-image-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    height: 300px;
}

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

.office-image-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.location-card {
    background-color: #fff;
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.location-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--space-2);
}

.location-address {
    color: var(--text-muted);
    margin-bottom: var(--space-4);
}

.map-container {
    height: 300px;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: right;
    padding-left: .5rem;
}