/*
 * KroneX Service - Unified Stylesheet
 * Version: 3.0
 * Alle Seiten nutzen dieses CSS für einheitliches Design
 */

:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --secondary: #ed8936;
    --secondary-light: #f6ad55;
    --accent: #38a169;
    --dark: #1a202c;
    --light: #f7fafc;
    --gray: #718096;
    --gray-light: #e2e8f0;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 25px 50px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

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

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

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(237, 137, 54, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(237, 137, 54, 0.5);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

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

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--light);
    transform: translateY(-2px);
}

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--secondary);
}

.top-bar-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-bar-left i {
    color: var(--secondary);
    margin-right: 8px;
}

.top-bar-right {
    display: flex;
    gap: 12px;
}

.top-bar-right a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.top-bar-right a:hover {
    background: var(--secondary);
}

/* ========== HEADER ========== */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    width: 55px;
    height: 55px;
    border-radius: var(--radius);
    object-fit: contain;
}

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

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-name span {
    color: var(--secondary);
}

.logo-tagline {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

/* ========== NAVIGATION ========== */
nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

nav > ul > li {
    position: relative;
}

nav a {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius);
    transition: var(--transition);
}

nav a:hover,
nav a.active {
    background: var(--light);
    color: var(--primary);
}

/* Dropdown */
nav .dropdown {
    position: relative;
}

nav .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    padding: 10px 0;
}

nav .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

nav .dropdown-content a {
    padding: 12px 20px;
    border-radius: 0;
    display: block;
}

nav .dropdown-content a:hover {
    background: var(--light);
}

.header-cta {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(237, 137, 54, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 137, 54, 0.5);
    color: var(--white);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* ========== PAGE HERO ========== */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 30px 30px;
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.breadcrumb span {
    color: var(--secondary);
}

.breadcrumb i {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
}

.page-hero h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.page-hero h1 mark {
    background: none;
    color: var(--secondary);
}

.page-hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    line-height: 1.7;
}

/* ========== CONTENT SECTIONS ========== */
.content-section {
    padding: 80px 0;
}

.content-section.alt {
    background: var(--light);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-main h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 25px;
}

.content-main h3 {
    font-size: 24px;
    color: var(--dark);
    margin: 40px 0 20px;
}

.content-main p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.content-main ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.content-main ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
}

.content-main ul li:last-child {
    border-bottom: none;
}

.content-main ul li i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 3px;
}

/* ========== SIDEBAR ========== */
.sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.sidebar-box.cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.sidebar-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.sidebar-box.cta h3 {
    color: var(--white);
}

.sidebar-box p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 15px;
}

.sidebar-box.cta p {
    color: rgba(255,255,255,0.9);
}

.sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-contact a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
}

.sidebar-contact a:hover {
    background: rgba(255,255,255,0.2);
}

.sidebar-contact i {
    font-size: 20px;
    color: var(--secondary);
}

/* ========== SLIDESHOW ========== */
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.slideshow-container .slide {
    display: none;
    animation: fadeSlide 0.5s ease;
}

.slideshow-container .slide.active {
    display: block;
}

.slideshow-container .slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.slideshow-container .slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 30px 20px 20px;
    font-size: 16px;
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}

.slideshow-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    box-shadow: var(--shadow);
}

.slideshow-nav button:hover {
    background: var(--secondary);
    color: var(--white);
}

.slideshow-dots {
    text-align: center;
    padding: 15px;
    background: var(--white);
}

.slideshow-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.slideshow-dots .dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

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

/* ========== SERVICE CARDS ========== */
.service-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.service-type-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

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

.service-type-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1), rgba(44, 82, 130, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.service-type-card:hover .icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.service-type-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-type-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

/* ========== FAQ ========== */
.faq-section {
    padding: 80px 0;
    background: var(--light);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 700;
    color: var(--dark);
    font-size: 17px;
    transition: var(--transition);
}

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

.faq-question i {
    color: var(--secondary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 54, 93, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.1;
}

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

.cta-banner h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========== PRICING BOX ========== */
.pricing-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    text-align: center;
    margin: 50px 0;
}

.pricing-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--white);
}

.pricing-box p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
}

/* ========== FOOTER (Blauer Footer) ========== */
footer {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.8;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

/* Simple Footer Variant */
.footer-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 0;
    border-top: none;
}

.footer-simple p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-simple a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
    transition: var(--transition);
}

.footer-simple a:hover {
    color: var(--white);
}

/* ========== LEGAL PAGES ========== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.legal-content h1 {
    color: var(--primary);
    margin-bottom: 40px;
    font-size: 42px;
}

.legal-content h2 {
    color: var(--primary);
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-content h3 {
    color: var(--primary);
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-content p {
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 20px;
}

.legal-content a {
    color: var(--secondary);
}

.legal-content a:hover {
    text-decoration: underline;
}

/* ========== TEAM / ABOUT PAGE ========== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 50px 0;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--primary);
}

.team-card h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--dark);
}

.team-card .position {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-card p {
    color: var(--gray);
    font-size: 14px;
}

/* ========== CAREER PAGE ========== */
.job-listing {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    transition: var(--transition);
}

.job-listing:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.job-info h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.job-meta span {
    color: var(--gray);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-meta i {
    color: var(--secondary);
}

/* ========== CONTACT FORM ========== */
.contact-form {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

/* ========== SERVICES GRID (for Index Page) ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    text-decoration: none;
    display: block;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--secondary);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1), rgba(44, 82, 130, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ========== CONTACT SECTION (Enhanced) ========== */
.contact-section {
    padding: 80px 0;
    background: var(--light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 50px;
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-info-card > p {
    opacity: 0.9;
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--secondary);
    flex-shrink: 0;
}

.contact-detail-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.contact-detail-item p,
.contact-detail-item a {
    color: var(--white);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

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

.contact-social {
    display: flex;
    gap: 15px;
}

.contact-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--secondary);
}

.contact-form-card {
    padding: 50px;
}

.contact-form-card h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark);
}

.contact-form-card .contact-form {
    background: transparent;
    padding: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .service-types {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .header-cta {
        display: none;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .service-types,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-banner h2 {
        font-size: 28px;
    }
    
    .cta-banner .btn-group {
        flex-direction: column;
        align-items: center;
    }
    
    .job-listing {
        flex-direction: column;
        text-align: center;
    }
    
    .slideshow-container .slide img {
        height: 250px;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
    
    .legal-content h1 {
        font-size: 32px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 30px;
    }
}
