/* Logo ADNP jednoduché */
.nav-logo img {
    height: 120px;
    width: auto;
    display: block;
    background: transparent;
    padding: 0;
}

.nav-logo a {
    display: block;
    text-decoration: none;
}
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Light theme (default) */
:root {
    --primary-gold: #D4AF37;
    --dark-gold: #996515;
    --light-gold: #FFD700;
    --royal-black: #1C1C1C;
    --off-white: #F5F5F5;
    --text-light: #FFFFFF;
    --text-dark: #1C1C1C;
    --text-primary: #1C1C1C;
    --text-secondary: #666666;
    --text-medium: #888888;
    --background-primary: #FFFFFF;
    --background-primary-rgb: #1C1C1C;
    --background-secondary: #F8F7F4;
    --border-light: rgba(212, 175, 55, 0.2);
    --gold-gradient: linear-gradient(135deg, var(--dark-gold) 0%, var(--dark-gold) 100%);
    --glass-effect: rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 4px 20px rgba(212, 175, 55, 0.15);
    --shadow-medium: 0 8px 32px rgba(212, 175, 55, 0.2);
}

[data-theme="dark"] {
    --background-primary: #1C1C1C;
    --background-primary-rgb: 28, 28, 28;
    --background-secondary: #2C2C2C;
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
}

/* Dark theme */
[data-theme="dark"] {
    --primary-gold: #FFD700;
    --dark-gold: #D4AF37;
    --light-gold: #996515;
    --background-primary: #1C1C1C;
    --background-secondary: #2C2C2C;
    --text-primary: #F5F5F5;
    --text-secondary: #CCCCCC;
    --text-accent: #FFD700;
    --border-color: rgba(255, 215, 0, 0.2);
    --shadow-color: rgba(255, 215, 0, 0.15);
    --nav-background: rgba(28, 28, 28, 0.95);
    --card-background: #2C2C2C;
    --gold-gradient: linear-gradient(135deg, var(--dark-gold) 0%, var(--dark-gold) 100%);
    --glass-effect: rgba(0, 0, 0, 0.2);
    --shadow-soft: 0 4px 20px rgba(255, 215, 0, 0.15);
    --shadow-medium: 0 8px 32px rgba(255, 215, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background-primary);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    position: relative;
}

h1::after, h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
}

h1 { font-size: clamp(2.5rem, 4vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3vw, 2.75rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 1.875rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 20px;
    color: var(--text-medium);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Theme switcher */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.theme-switch {
    display: inline-block;
    width: 60px;
    height: 32px;
    position: relative;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    top: 3px;
    background: var(--primary-gold);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.slider:after {
    content: '☀️';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 1;
}

input:checked + .slider {
    background: rgba(0, 0, 0, 0.2);
}

input:checked + .slider:before {
    transform: translateX(28px);
    background: var(--dark-gold);
}

input:checked + .slider:after {
    content: '🌙';
    left: 8px;
    right: auto;
    font-size: 16px;
    opacity: 1;
}

/* Navigation */
.navbar {
    background: var(--background-primary);
    box-shadow: var(--shadow-soft);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--primary-gold);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 140px;
    gap: 24px;
}

.nav-container .nav-logo {
    flex-shrink: 0;
}

.nav-container .nav-menu {
    flex: 1;
    justify-content: flex-start;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.hamburger-menu.active span:nth-child(4) {
    opacity: 0;
}

.nav-logo h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-logo h1:hover {
    color: var(--dark-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 12px 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--dark-gold) !important;
    text-shadow: 0 0 20px var(--dark-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--dark-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--glass-effect);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    min-width: 280px;
    box-shadow: var(--shadow-medium);
    border-radius: 2px;
    padding: 16px 0;
    z-index: 1001;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInUp 0.1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content a {
    color: var(--text-primary);
    padding: 12px 24px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--text-primary);
}

/* Main content */
main {
    margin-top: 80px;
}

/* Hero section */
.hero {
    position: relative;
    background: var(--background-white);
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.hero {
    background: var(--background-primary);
}

[data-theme="dark"] .hero {
    background: var(--background-primary);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-medium);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Sections */
section {
    padding: 120px 0;
}

/* About section */
.about {
    background: var(--background-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    color: var(--text-dark);
    margin-bottom: 32px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.about-text p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.team-info {
    background: var(--light-gold);
    padding: 32px;
    border-radius: 2px;
    margin-top: 32px;
}

.team-info p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-team-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 2px;
    box-shadow: var(--shadow-medium);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--background-light);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 500;
    border: 2px dashed var(--border-light);
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    background: var(--light-gold);
    border-color: var(--dark-gold);
}

/* Values section */
.values-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 64px;
    color: var(--text-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.value-item {
    text-align: center;
    padding: 40px 24px;
    background: var(--background-white);
    border-radius: 2px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--dark-gold);
}

.value-icon {
    margin-bottom: 24px;
}

.icon-placeholder {
    width: 64px;
    height: 64px;
    background: var(--primary-gold);
    border-radius: 4%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-item h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

/* Stats section */
.stats {
    position: relative;
    background: var(--text-dark);
    color: white;
    text-align: center;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.stats-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.stats .container {
    position: relative;
    z-index: 2;
}

.stats h2 {
    color: white;
    font-size: clamp(2rem, 3vw, 2.75rem);
    margin-bottom: 64px;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 64px;
}

.stat-item {
    text-align: center;
    background: var(--glass-effect);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    padding: 30px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.stat-number {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--dark-gold);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat-unit {
    font-size: 1.5rem;
    color: var(--dark-gold);
    font-weight: 600;
    margin-top: -8px;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Services section */
.services {
    background: var(--background-primary);
    position: relative;
    overflow: hidden;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.services-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.services-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.service-card {
    position: relative;
    background: var(--background-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.service-header {
    padding: 40px 40px 32px;
    position: relative;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--glass-effect);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.service-icon svg {
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
}

.service-card:hover .service-icon svg {
    color: var(--light-gold);
    animation: pulse 2s infinite;
}

.service-header h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

.service-details {
    padding: 0 40px 32px;
}

.service-details h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.service-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.service-checklist li {
    display: flex;
    align-items: center;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px;
    border-radius: 8px;
    background: var(--glass-effect);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInScale 0.6s ease-out forwards;
}

.service-checklist li:nth-child(1) { animation-delay: 0.8s; }
.service-checklist li:nth-child(2) { animation-delay: 0.9s; }
.service-checklist li:nth-child(3) { animation-delay: 1.0s; }
.service-checklist li:nth-child(4) { animation-delay: 1.1s; }
.service-checklist li:nth-child(5) { animation-delay: 1.2s; }
.service-checklist li:nth-child(6) { animation-delay: 1.3s; }

.service-checklist li:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(4px);
}

.checkmark {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.125rem;
    margin-right: 12px;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-checklist li:hover .checkmark {
    color: var(--light-gold);
    animation: bounce 0.6s ease;
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0 0 0;
    padding: 24px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.highlight-item {
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    background: var(--glass-effect);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.highlight-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 4px;
}

.highlight-item span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    margin: 0 40px 40px;
    background: var(--gold-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.service-btn::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: left 0.5s;
}

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

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--light-gold), var(--primary-gold));
}

.service-btn svg {
    transition: transform 0.3s ease;
}

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

.btn {
    display: inline-block;
    background: var(--background-primary);
    color: var(--dark-gold);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--primary-gold);
}

.btn:hover {
    background: var(--gold-gradient);
    color: var(--background-primary);
}

[data-theme="dark"] .btn {
    background: var(--background-secondary);
    color: var(--dark-gold);
}

[data-theme="dark"] .btn:hover {
    background: var(--gold-gradient);
    color: var(--background-primary);
}

.btn:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Industries section */
.industries {
    position: relative;
    background: var(--background-white);
    overflow: hidden;
}

.industries-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.industries-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.industries-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 249, 250, 0.94) 100%);
}

.industries .container {
    position: relative;
    z-index: 2;
}

.industries-header {
    text-align: center;
    margin-bottom: 80px;
}

.industries-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industries-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.industry-item {
    position: relative;
    height: 280px;
    border-radius: 2px;
    overflow: visible;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    box-shadow: none !important;
}

.industry-item:hover {
    transform: none;
    box-shadow: none !important;
}

.industry-item *,
.industry-item *:hover,
.industry-image,
.industry-image:hover {
    box-shadow: none !important;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.industry-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.industry-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        transparent 40%, 
        rgba(0, 0, 0, 0.8) 100%
    );
    transition: all 0.3s ease;
    z-index: 2;
}

.industry-item:hover .industry-image::after {
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.9) 0%, 
        rgba(255, 215, 0, 0.85) 50%,
        rgba(184, 134, 11, 0.9) 100%
    );
}

.industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.industry-item:hover .industry-img {
    transform: none;
}


.industry-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    cursor: pointer;
}

.industry-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.industry-icon img {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.industry-item:hover .industry-icon {
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.industry-item:hover .industry-icon img {
    filter: brightness(0) saturate(0);
}

.industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 3;
    pointer-events: none;
    opacity: 1;
    transition: all 0.3s ease;
    max-height: none;
    overflow: visible;
}

.industry-content h4 {
    margin: 0 0 10px 0;
}

.industry-content h4 a {
    color: white;
    text-decoration: none;
    font-size: 28px;
    font-weight: 800;
    display: block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
}

.industry-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
    font-weight: 600;
}

.industry-item:hover .industry-content a {
    color: #1C1C1C;
    font-weight: 700;
    text-shadow: none;
}

.industry-item:hover .industry-content {
    transform: none;
    opacity: 1;
}

.industry-item:hover .industry-content p {
    color: #1C1C1C;
    font-weight: 600;
    text-shadow: none;
}

/* Staggered animation on scroll */
.industry-item:nth-child(odd) {
    animation-delay: 0.1s;
}

.industry-item:nth-child(even) {
    animation-delay: 0.2s;
}


/* Footer */
footer {
    background: var(--background-secondary);
    color: var(--text-primary);
    padding: 64px 0 40px;
    border-top: 2px solid var(--primary-gold);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.footer-section a {
    color: var(--dark-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* Industry Pages Styles */
body:has(.industry-hero) main {
    margin-top: 0;
}

.industry-hero {
    position: relative;
    height: 50vh;
    overflow: hidden;
    margin-top: 80px;
}

.industry-hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    width: 100%;
    height: 200%;
    object-fit: cover;
    object-position: top center;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.industry-content-section {
    padding: 80px 0;
    background: var(--background-primary);
    position: relative;
}

.industry-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-gold) 50%, 
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.industry-title {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
}

.industry-title h1 {
    color: var(--text-primary);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    margin: 0;
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}


@keyframes expandLine {
    0% { width: 0; }
    100% { width: 100px; }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.industry-intro {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.industry-intro h2 {
    color: var(--text-primary);
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 24px;
    font-weight: 600;
}

.industry-intro p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.industry-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.industry-description {
    animation: fadeInLeft 1s ease-out 0.6s both;
}

.industry-description h3 {
    color: var(--dark-gold);
    font-size: 1.75rem;
    margin-bottom: 24px;
    font-weight: 600;
    position: relative;
}

.industry-description h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
    animation: slideDown 0.8s ease-out 1.2s both;
}

.industry-description p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s both;
}

.industry-services {
    animation: fadeInRight 1s ease-out 0.6s both;
}

.industry-services h3 {
    color: var(--dark-gold);
    font-size: 1.75rem;
    margin-bottom: 32px;
    font-weight: 600;
    position: relative;
}

.industry-services h3::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
    animation: slideDown 0.8s ease-out 1.2s both;
}

.services-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.services-checklist li {
    display: flex;
    align-items: center;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease-out both;
    padding: 8px;
    border-radius: 6px;
}

.services-checklist li:hover .checkmark {
    animation: shake 0.7s ease-in-out;
}

.services-checklist li:nth-child(1) { animation-delay: 1.2s; }
.services-checklist li:nth-child(2) { animation-delay: 1.3s; }
.services-checklist li:nth-child(3) { animation-delay: 1.4s; }
.services-checklist li:nth-child(4) { animation-delay: 1.5s; }
.services-checklist li:nth-child(5) { animation-delay: 1.6s; }
.services-checklist li:nth-child(6) { animation-delay: 1.7s; }
.services-checklist li:nth-child(7) { animation-delay: 1.8s; }
.services-checklist li:nth-child(8) { animation-delay: 1.9s; }
.services-checklist li:nth-child(9) { animation-delay: 2.0s; }

.checkmark {
    color: var(--dark-gold);
    font-weight: 700;
    font-size: 1.25rem;
    margin-right: 12px;
    width: 20px;
    text-align: center;
    animation: bounce 0.8s ease-out;
    animation-delay: inherit;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-3px) rotate(-2deg);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(3px) rotate(2deg);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Responsive design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 40px;
        margin-top: 60px;
    }
    
    .service-card {
        border-radius: 12px;
    }
    
    .service-checklist {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-header, .service-details {
        padding-left: 32px;
        padding-right: 32px;
    }
    
    .service-btn {
        margin: 0 32px 32px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
    }
    
    .stats-grid {
        gap: 40px;
    }
    
    .industry-details {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .services-checklist {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Newsletter/Contact Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.95), rgba(28, 28, 28, 0.8)), url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
    position: relative;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.newsletter-content p {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
}

.newsletter-content .highlight {
    color: var(--primary-gold);
    font-weight: 600;
}

.newsletter-btn {
    display: inline-block;
    background: var(--primary-gold);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.newsletter-btn:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
}

/* Dark theme adjustments */
[data-theme="dark"] .newsletter-section {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.95), rgba(28, 28, 28, 0.8)), url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-content p {
        font-size: 1.2rem;
    }
    
    .newsletter-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Chatbot Widget */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
}

.chatbot-toggle.shake {
    animation: shakeAttention 0.8s ease-in-out 3;
}

@keyframes shakeAttention {
    0%, 100% { transform: rotate(0deg) scale(1); }
    10% { transform: rotate(-8deg) scale(1.05); }
    20% { transform: rotate(8deg) scale(1.05); }
    30% { transform: rotate(-6deg) scale(1.03); }
    40% { transform: rotate(6deg) scale(1.03); }
    50% { transform: rotate(-4deg) scale(1.02); }
    60% { transform: rotate(4deg) scale(1.02); }
    70% { transform: rotate(-2deg) scale(1.01); }
    80% { transform: rotate(2deg) scale(1.01); }
    90% { transform: rotate(-1deg) scale(1); }
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    background: var(--dark-gold);
}

.chatbot-icon {
    font-size: 24px;
    color: white;
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: min(350px, calc(100vw - 40px));
    height: min(450px, calc(100vh - 140px));
    max-width: 350px;
    background: var(--background-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--primary-gold);
    display: none;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.chatbot-window.active {
    display: flex;
}

.chatbot-header {
    padding: 16px 20px;
    background: var(--primary-gold);
    color: white;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 16px;
}

.message {
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    max-width: 80%;
}

.bot-message {
    background: var(--background-secondary);
    align-self: flex-start;
    color: var(--text-primary);
}

.user-message {
    background: var(--primary-gold);
    color: white;
    align-self: flex-end;
    margin-left: auto;
}

.message p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.chatbot-input-area {
    display: flex;
    gap: 8px;
}

.chatbot-input-area input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 14px;
    background: var(--background-primary);
    color: var(--text-primary);
}

.chatbot-input-area input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.chatbot-input-area button {
    padding: 10px 16px;
    background: var(--primary-gold);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.chatbot-input-area button:hover {
    background: var(--dark-gold);
}


/* Language Selector */
.language-selector {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: var(--background-secondary);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.language-toggle:hover {
    background: var(--primary-gold);
    color: white;
}

.current-language {
    font-size: 11px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    color: var(--primary-gold);
    min-width: 24px;
    text-align: center;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--background-primary);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    box-shadow: var(--shadow-medium);
    min-width: 150px;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
}

.language-dropdown.active {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    cursor: pointer;
    transition: background 0.3s ease;
    color: var(--text-primary);
}

.language-option:hover {
    background: var(--background-secondary);
}

.language-option.active {
    background: var(--primary-gold);
    color: white;
}

.language-option .flag {
    font-size: 11px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    color: var(--primary-gold);
    min-width: 24px;
    text-align: center;
}

.language-option .name {
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 70px;
        gap: 12px;
    }
    
    .nav-right {
        gap: 12px;
    }
    
    .language-toggle {
        padding: 6px 8px;
    }
    
    .language-dropdown {
        right: 0;
        min-width: 120px;
    }
    
    .theme-switch-wrapper {
        position: static;
        top: auto;
        right: auto;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100vw - 32px);
        height: 60vh;
        right: 16px;
        left: 16px;
        bottom: 70px;
    }
    
    .chatbot-toggle {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }
    
    .chatbot-icon {
        font-size: 22px;
    }
    
    .chatbot-messages {
        padding: 12px;
        font-size: 14px;
    }
    
    .chatbot-input-area input {
        font-size: 16px;
        padding: 12px;
    }
    
    .chatbot-input-area button {
        padding: 12px 16px;
        font-size: 14px;
    }
    
}

@media (min-width: 481px) and (max-width: 768px) {
    .chatbot-window {
        width: 340px;
        height: 450px;
        right: 20px;
        bottom: 80px;
    }
    
    .chatbot-toggle {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .chatbot-icon {
        font-size: 24px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .chatbot-window {
        width: 380px;
        height: 480px;
    }
    
    .chatbot-toggle {
        width: 60px;
        height: 60px;
    }
}

/* Additional responsive breakpoints */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
}

/* Small screens */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .newsletter-content h2 {
        font-size: 1.5rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
    }
    
    .nav-logo img {
        height: 80px;
    }
    
    .industry-title h1 {
        font-size: 2rem;
    }
    
    .industry-intro h2 {
        font-size: 1.5rem;
    }
}

/* Medium screens */
@media (min-width: 481px) and (max-width: 768px) {
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Landscape orientation */
@media (orientation: landscape) and (max-height: 500px) {
    .hero {
        padding: 40px 0;
    }
    
    .industry-hero {
        height: 80vh;
    }
    
    .newsletter-section {
        padding: 40px 0;
    }
}

/* Tablet and mobile navigation */
@media (max-width: 1024px) {
    .nav-container {
        gap: 12px;
    }
    
    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
        height: 70px;
        gap: 12px;
        position: relative;
        flex-wrap: nowrap;
    }

    .hamburger-menu {
        display: flex;
        order: 1;
        z-index: 1002;
    }

    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--background-primary);
        box-shadow: var(--shadow-medium);
        display: none;
        padding: 20px 0;
        backdrop-filter: blur(15px);
        border-top: 1px solid var(--primary-gold);
        order: 3;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    .nav-right {
        gap: 8px;
        order: 2;
        position: relative;
        z-index: 1002;
        flex-shrink: 0;
    }
    
    .language-toggle {
        padding: 4px 6px;
        font-size: 12px;
        min-width: 32px;
    }
    
    .language-dropdown {
        right: 0;
        min-width: 120px;
        top: calc(100% + 5px);
    }
    
    .theme-switch-wrapper {
        position: static;
        top: auto;
        right: auto;
    }
    
    .theme-switch {
        width: 44px;
        height: 24px;
    }
    
    .slider:before {
        height: 18px;
        width: 18px;
        left: 3px;
        top: 3px;
    }
    
    input:checked + .slider:before {
        transform: translateX(20px);
    }
    
    .slider:after {
        font-size: 14px;
        right: 6px;
    }
    
    input:checked + .slider:after {
        left: 6px;
        font-size: 14px;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-light);
        display: block;
        font-size: 16px;
        transition: all 0.3s ease;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .dropdown.active > .nav-link {
        background-color: var(--background-secondary);
        color: var(--primary-gold);
        font-weight: 600;
    }
    
    .dropdown > .nav-link::after {
        content: '▼';
        float: right;
        font-size: 12px;
        color: var(--text-secondary);
    }
    
    .dropdown.active > .nav-link::after {
        color: var(--primary-gold);
    }
    
    /* Mobile dropdown styles */
    .dropdown {
        position: relative;
    }
    
    .dropdown .dropdown-content {
        display: none;
        position: static;
        background: var(--background-secondary);
        min-width: auto;
        box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
        border-radius: 0;
        padding: 0;
        border: none;
        margin-left: 20px;
        margin-top: 5px;
        border-left: 3px solid var(--primary-gold);
    }
    
    .dropdown.active .dropdown-content {
        display: block !important;
        animation: slideDown 0.3s ease-out;
    }
    
    .dropdown .dropdown-content a {
        padding: 10px 20px;
        border-bottom: 1px solid var(--border-light);
        font-size: 14px;
        color: var(--text-secondary);
    }
    
    .dropdown .dropdown-content a:last-child {
        border-bottom: none;
    }
    
    .dropdown .dropdown-content a:hover {
        background-color: var(--background-primary);
        color: var(--primary-gold);
    }
    
    /* Disable hover effects on mobile */
    .dropdown:hover .dropdown-content {
        display: none;
    }
    
    main {
        margin-top: 70px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    section {
        padding: 60px 0;
    }
    
    .industry-hero {
        height: 40vh;
    }
    
    .industry-content-section {
        padding: 60px 0;
    }
    
    .industry-intro {
        margin-bottom: 60px;
    }
    
    .industry-details {
        gap: 40px;
    }
    
    .values-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 48px;
    }
    
    .service-card {
        border-radius: 12px;
    }
    
    .service-header, .service-details {
        padding: 24px;
    }
    
    .service-btn {
        margin: 0 24px 24px;
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-checklist {
        gap: 8px;
    }
    
    .service-checklist li {
        padding: 8px;
        font-size: 0.9rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    section {
        padding: 48px 0;
    }
    
    .service-content,
    .value-item {
        padding: 32px 20px;
    }
    
    .industry-item {
        padding: 32px 20px;
    }
    
    .services-grid {
        gap: 24px;
        margin-top: 40px;
    }
    
    .service-header, .service-details {
        padding: 20px;
    }
    
    .service-btn {
        margin: 0 20px 20px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-header h3 {
        font-size: 1.4rem;
    }
    
    .service-highlights {
        padding: 16px 0;
        margin: 24px 0 0 0;
    }
    
    .highlight-item {
        padding: 12px;
    }
    
    .highlight-item strong {
        font-size: 1.25rem;
    }
}

/* Service Pages Styles */
.service-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .service-hero {
        overflow: visible;
        margin-top: 70px;
        height: 50vh;
    }

    /* Ensure navbar is above service-hero on mobile */
    .navbar {
        z-index: 10000 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }

    .nav-right {
        z-index: 10001 !important;
        position: relative !important;
    }

    .nav-container {
        z-index: 10002 !important;
    }
}

.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.8) 0%, rgba(28, 28, 28, 0.4) 100%);
    z-index: 2;
}

.service-hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    width: 100%;
}

.service-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
}

.service-hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.service-content-section {
    padding: 120px 0;
    background: var(--background-primary);
}

.service-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.service-intro h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 32px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-intro p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.service-expertise {
    margin-bottom: 120px;
}

.service-expertise h2 {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 80px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.expertise-card {
    background: var(--background-primary);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

.expertise-card:nth-child(1) { animation-delay: 0.2s; }
.expertise-card:nth-child(2) { animation-delay: 0.4s; }
.expertise-card:nth-child(3) { animation-delay: 0.6s; }
.expertise-card:nth-child(4) { animation-delay: 0.8s; }

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

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

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: var(--glass-effect);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.expertise-icon svg {
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
}

.expertise-card:hover .expertise-icon svg {
    color: var(--light-gold);
    animation: pulse 2s infinite;
}

.expertise-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.expertise-card p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.expertise-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-checklist li {
    display: flex;
    align-items: center;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 0;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInLeft 0.6s ease-out forwards;
}

.expertise-checklist li:nth-child(1) { animation-delay: 1s; }
.expertise-checklist li:nth-child(2) { animation-delay: 1.2s; }
.expertise-checklist li:nth-child(3) { animation-delay: 1.4s; }

.expertise-checklist li:hover {
    transform: translateX(8px);
    color: var(--primary-gold);
}

.transaction-types {
    margin-bottom: 120px;
}

.transaction-types h2 {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 80px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.transaction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.transaction-item {
    background: var(--background-primary);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
}

.transaction-item:nth-child(1) { animation-delay: 0.1s; }
.transaction-item:nth-child(2) { animation-delay: 0.2s; }
.transaction-item:nth-child(3) { animation-delay: 0.3s; }
.transaction-item:nth-child(4) { animation-delay: 0.4s; }
.transaction-item:nth-child(5) { animation-delay: 0.5s; }
.transaction-item:nth-child(6) { animation-delay: 0.6s; }

.transaction-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.transaction-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    opacity: 0.3;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.transaction-item:hover .transaction-number {
    opacity: 0.8;
    transform: scale(1.1);
}

.transaction-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.transaction-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-stats {
    background: var(--glass-effect);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.service-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0.05;
    z-index: -1;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item-large {
    position: relative;
    padding: 20px;
}

.stat-number-large {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 8px;
    animation: countUp 2s ease-out;
}

.stat-unit {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@keyframes countUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chatbot widget styles */
.chatbot-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 10000;
}

.chatbot-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    color: #fff;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
    border: 1px solid rgba(212, 175, 55, 0.5);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chatbot-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(212, 175, 55, 0.45);
}

.chatbot-icon {
    font-size: 22px;
}

/* Shake animation used on load */
@keyframes chatbot-shake {
    0%, 100% { transform: translateX(0); }
    15% { transform: translateX(-3px); }
    30% { transform: translateX(3px); }
    45% { transform: translateX(-3px); }
    60% { transform: translateX(3px); }
    75% { transform: translateX(-2px); }
}

.shake {
    animation: chatbot-shake 0.8s ease-in-out 3;
}

.chatbot-window {
    position: fixed;
    right: 24px;
    bottom: 96px; /* above the toggle */
    width: 360px;
    max-width: calc(100vw - 32px);
    max-height: 70vh;
    display: none;
    flex-direction: column;
    background: var(--background-primary);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    overflow: hidden;
    z-index: 10001;
}

.chatbot-window.active {
    display: flex;
}

.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--background-secondary);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.chatbot-header h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-primary);
    -webkit-text-fill-color: initial; /* ensure text visible over gradient headings rule */
}

.chatbot-close {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

.chatbot-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chatbot-messages {
    padding: 12px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    flex: 1;
}

.message {
    max-width: 85%;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.bot-message {
    align-self: flex-start;
    background: var(--background-secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.user-message {
    align-self: flex-end;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.35);
}

.chatbot-input-area {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    background: var(--background-primary);
}

#chatbot-input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: var(--background-secondary);
    color: var(--text-primary);
}

#chatbot-send {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: var(--gold-gradient);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .chatbot-widget {
        right: 12px;
        bottom: calc(env(safe-area-inset-bottom, 0) + 12px);
    }

    .chatbot-toggle {
        width: 52px;
        height: 52px;
    }

    .chatbot-window {
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        max-width: 100vw;
        height: auto;
        max-height: 65vh;
        border-radius: 12px 12px 0 0;
        border-left: none;
        border-right: none;
    }

    .chatbot-messages {
        padding: 12px 12px 8px 12px;
    }

    .chatbot-input-area {
        padding: 10px 12px calc(env(safe-area-inset-bottom, 0) + 10px) 12px;
        gap: 8px;
        background: var(--background-primary);
    }

    #chatbot-input {
        font-size: 16px; /* prevent iOS zoom */
        padding: 12px;
    }

    #chatbot-send {
        padding: 12px 14px;
    }
}

/* Smooth animations */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
}