/* ==========================================
   MERATON.DE - Complete Styles
   Clean & Readable Class Names
   ========================================== */

/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Für fixed header offset */
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    color: #fff;
    background-color: #ededed;
    line-height: 1.7em;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection Color */
::selection {
    background-color: #d9151f;
    color: #fff;
}

::-moz-selection {
    background-color: #d9151f;
    color: #fff;
}

a {
    color: #d9151f;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #a01015;
}

/* Focus styles for accessibility */
/* a:focus,
button:focus,
input:focus,
/* textarea:focus {
    outline: 2px solid #d9151f;
    outline-offset: 2px; 
}*/

ul, ol {
    list-style: none;
}

img {
    height: auto;
    display: block;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #2c2c2c;
}

h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

h2 {
    font-size: 35px;
    margin-bottom: 15px;
}

h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

/* === HELPER CLASSES === */
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.et-last-child {
    margin-right: 0 !important;
}

/* === HEADER === */
header,
.site-header {
    background: #fff;
    box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.11);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-inner {
    max-width: 1800px;
    width: 100%;
    margin: 0;
    padding: 10px 0 10px 15px;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 65px;
}

/* === COLUMNS === */
.column {
    display: flex;
    align-items: center;
}

.column-left {
    flex: 3;
}

.column-right {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
    padding-right: 0;
    margin-right: 0;
}

.column-half {
    flex: 1;
}

/* === LOGO === */
.logo-wrapper {
    padding-right: 50px;
    border-right: 1px solid #bdb1b1;
    margin-right: 50px;
    margin-left: 0;
}

.logo a {
    display: block;
}

.logo img {
    height: 50px;
    width: auto;
}

/* === NAVIGATION === */
.nav-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
}

.main-nav {
    flex: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu > li > a {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #000;
    letter-spacing: 1px;
    padding: 10px 0;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d9151f;
    transition: width 0.3s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li.current > a::after {
    width: 100%;
}

.nav-menu > li > a:hover,
.nav-menu > li.current > a {
    color: #d9151f;
}

/* === SUBMENU === */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #d9151f;
    min-width: 220px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    padding: 0;
}

.sub-menu li a {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #000;
    padding: 10px 20px;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.sub-menu li a::before {
    content: '→';
    position: absolute;
    left: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #d9151f;
}

.sub-menu li a:hover {
    color: #d9151f;
    background-color: #f9f9f9;
    padding-left: 30px;
}

.sub-menu li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Active submenu item */
.sub-menu li.current a {
    color: #d9151f;
    font-weight: 700;
    background-color: #f9f9f9;
}

.sub-menu li.current a::before {
    content: '→';
    position: absolute;
    left: 10px;
    opacity: 1;
    transform: translateX(0);
    color: #d9151f;
}

.sub-menu li.current a {
    padding-left: 30px;
}

/* === MOBILE MENU === */
.et_mobile_nav_menu {
    display: none;
}

.mobile_nav {
    cursor: pointer;
    padding: 10px;
}

.mobile_menu_bar {
    display: block;
    width: 25px;
    height: 3px;
    background: #d9151f;
    position: relative;
}

.mobile_menu_bar:before,
.mobile_menu_bar:after {
    content: '';
    display: block;
    width: 25px;
    height: 3px;
    background: #d9151f;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile_menu_bar:before {
    top: -8px;
}

.mobile_menu_bar:after {
    top: 8px;
}

/* === BUTTONS === */
.btn,
.btn-primary,
.btn-remote {
    /* background: linear-gradient(151deg, #d9151f 63%, #f3f3f3 99%); */
    background: #d9151f;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 45px 12px 30px;
    box-shadow: 0 9px 18px -9px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    margin: 0;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before,
.btn-primary::before,
.btn-remote::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before,
.btn-primary:hover::before,
.btn-remote:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover,
.btn-primary:hover,
.btn-remote:hover {
    box-shadow: 0 15px 30px -9px rgba(217, 21, 31, 0.4);
    transform: translateY(-5px) scale(1.02);
    background: linear-gradient(151deg, #a01015 63%, #d9151f 99%);
    color: #fff;
}

.btn-wrapper {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 15px;
}

.btn-group {
    margin-top: 30px;
}

.hero-section {
    background-color: #ededed;
    padding: 120px 0;
    min-height: 900px;
}

.hero-container {
    display: flex;
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 100px;
    gap: 120px;
}

/* === HERO TEXT === */
.hero-text h3 {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-text h1 {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 17px;
    line-height: 1.9;
    font-weight: 400;
    color: #000;
    margin-bottom: 15px;
}

.hero-text p strong {
    font-weight: 600;
}

.hero-text {
    flex: 1;
}

/* === HERO IMAGE === */
.hero-image {
    text-align: center;
    flex: 1.4;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    min-width: 600px;
}

/* === SCROLL DOWN ARROW === */
.scroll-down-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down-arrow a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-down-arrow a:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-down-arrow svg {
    transition: transform 0.3s ease;
}

.scroll-down-arrow a:hover svg {
    transform: translateY(3px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* === NEWS SLIDER SECTION === */
.news-slider-section {
    background-color: #000;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.slider-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    position: relative;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    min-height: 600px;
}

.slide {
    display: none;
    padding: 120px 40px;
    background-size: cover;
    background-position: center;
    min-height: 600px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.slide.active {
    display: flex;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.slide-content h2 {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slide-content .slide-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #d9151f;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(217, 21, 31, 0.8);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(217, 21, 31, 0.9);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: #d9151f;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
    left: 40px;
}

.slider-arrow-right {
    right: 40px;
}

.slider-arrow svg {
    pointer-events: none;
}

/* === SERVICES SECTION === */
.services-section {
    background-color: #ededed !important;
    padding: 80px 0;
    min-height: 400px;
    position: relative;
    z-index: 1;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    opacity: 1 !important;
    visibility: visible !important;
}

.section-title {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 44px;
    font-weight: 900;
    text-align: center;
    color: #000;
    margin-bottom: 60px;
    opacity: 1 !important;
    visibility: visible !important;
}

.section-title .highlight {
    color: #d9151f;
    font-weight: 700;
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-card {
    background: #fff !important;
    border-radius: 10px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: block !important;
    text-decoration: none;
    color: inherit;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 21, 31, 0.03), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(217, 21, 31, 0.15);
    background: #fff;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover h3 {
    color: #a01015;
}

.service-card-large {
    grid-column: 1 / -1;
}

.service-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon svg {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card h3 {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #d9151f;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
    color: #000;
    margin: 0;
}

/* Service Card Grid - 3 columns for bottom row */
.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:nth-child(6) {
    grid-column: span 1;
}

/* For 3-column layout in last row */
@media only screen and (min-width: 981px) {
    .services-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .service-card-large {
        grid-column: 1 / -1;
    }
    
    .service-card:nth-child(2),
    .service-card:nth-child(3) {
        grid-column: span 3;
    }
    
    .service-card:nth-child(4),
    .service-card:nth-child(5),
    .service-card:nth-child(6) {
        grid-column: span 2;
    }
}

/* === ABOUT US SECTION === */
.about-section {
    background-color: #fff;
    padding: 80px 0;
}

.about-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 30px;
}

.about-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
}

/* Quote Box */
.about-quote {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.quote-box {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

.quote-profile {
    flex-shrink: 0;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quote-text {
    flex: 1;
}

.quote-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 15px;
}

.quote-text p:last-child {
    margin-bottom: 0;
}

.quote-author {
    font-size: 14px;
    color: #000;
    margin-top: 20px;
}

.quote-author strong {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}

/* About Image */
.about-image {
    position: relative;
}

.about-image img {
    width: 76%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* === PARTNERS SECTION === */
.partners-section {
    background-color: #ededed;
    padding: 80px 0;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.partners-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px 60px;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.partner-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: #d9151f;
    transition: transform 0.3s ease;
}

.partner-logo:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo:hover img {
    opacity: 1;
    transform: scale(1.08) translateY(-3px);
    filter: drop-shadow(0 5px 15px rgba(217, 21, 31, 0.2));
}

/* === CONTACT SECTION === */
.contact-section {
    background-color: #fff;
    padding: 80px 0;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.contact-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 20px;
}

.contact-item a {
    color: #d9151f;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #000;
}

.contact-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.contact-icon svg {
    width: 50px;
    height: 50px;
}

.contact-item h3 {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    margin: 0;
}



/* === CONTACT FORM SECTION === */
.contact-form-section {
    background-color: #ededed;
    padding: 0;
}

.contact-form-container {
    max-width: 100%;
    padding-top: 25px;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: stretch;
    min-height: 600px;
}

.contact-form-image {
    position: relative;
    overflow: hidden;
}

.contact-form-image img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    object-position: center;
}

.contact-form-wrapper {
    background: #fff;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    width: 100%;
    max-width: 600px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    color: #666;
    background: #fff;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #d9151f;
    box-shadow: 0 0 0 2px rgba(217, 21, 31, 0.1);
}

.form-input::placeholder {
    color: #999;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    margin-bottom: 20px;
}

.form-submit {
    text-align: right;
    margin-bottom: 20px;
}

.btn-submit {
    background: #d9151f;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 40px;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(217, 21, 31, 0.3);
}

.btn-submit:hover {
    background: #a01015;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(217, 21, 31, 0.4);
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

.form-privacy {
    text-align: center;
}

.form-privacy p {
    font-size: 14px;
    color: #000;
    margin: 0;
}

.form-privacy a {
    color: #d9151f;
    text-decoration: none;
    font-weight: 600;
}

.form-privacy a:hover {
    text-decoration: underline;
}

/* === FOOTER === */
.site-footer {
    background-color: #fff;
    color: #000;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 0;
    display: grid;
    grid-template-columns: 1.4fr 1.1fr 1.1fr;
    gap: 120px;
}

.footer-column h4 {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

/* Footer Logo & Social */
.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 65px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #d9151f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #a01015;
    transform: translateY(-3px);
}

.footer-hours p {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 10px;
}

.footer-hours p strong {
    color: #000;
}

/* Footer Contact */
.footer-contact p {
    margin-bottom: 12px;
}

.footer-contact a {
    
    color: #d9151f;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #000;
}

.footer-address a {
    display: block;
    line-height: 1.7;
}

/* Footer Services */
.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li {
    margin-bottom: 10px;
}

.footer-services a {
    color: #000;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-services a:hover {
    color: #d9151f;
    padding-left: 5px;
}

/* Footer Bottom - Red Bar */
.footer-bottom {
    background: #d9151f;
    padding: 20px 0;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-hr {
    border-top: 1px solid #999;
    max-width: 50%;
    flex-grow: 1;
    margin-bottom: 4px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

.footer-copyright .heart {
    color: #fff;
    font-size: 16px;
}

.footer-copyright strong {
    font-weight: 700;
}

/* === COOKIE BANNER (Bloom - unten links) === */
.cookie-banner {
    display: none;
    /* position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #d9151f;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease; */
}

.cookie-banner:hover {
    /* transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4); */
}

.cookie-banner svg {
    /* width: 30px;
    height: 30px;
    fill: #fff; */
}

/* === RESPONSIVE === */
@media only screen and (max-width: 980px) {
    /* Mobile Menu */
    .et_mobile_nav_menu {
        display: block;
    }
    
    .et-menu-nav {
        display: none;
    }
    
    .et_pb_menu__logo-wrap {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
    }
    
    .et_pb_row_0_tb_header {
        padding: 0 20px;
    }
    
    /* Hero Section */
    .et_pb_row_0 {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
    }
    
    .et_pb_text_0 h1 {
        font-size: 30px;
    }
    
    .hero-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 30px;
    }
    
    .btn-wrapper {
        display: block;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .btn {
        display: block;
        text-align: center;
        width: 100%;
    }
    
    .hero-image img {
        min-width: auto;
    }
    
    /* News Slider */
    .news-slider-section {
        min-height: 500px;
    }
    
    .slider-wrapper {
        min-height: 500px;
    }
    
    .slide {
        min-height: 500px;
        padding: 80px 20px;
    }
    
    .slider-container {
        padding: 0;
    }
    
    .slide-content h2 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
    }
    
    .slider-arrow-left {
        left: 15px;
    }
    
    .slider-arrow-right {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    /* Services */
    .services-section {
        padding: 60px 0;
    }
    
    .services-container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 40px 30px;
    }
    
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4),
    .service-card:nth-child(5),
    .service-card:nth-child(6) {
        grid-column: span 1;
    }
    
    /* About Section */
    .about-section {
        padding: 60px 0;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quote-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .profile-image {
        width: 80px;
        height: 80px;
    }
    
    /* Partners Section */
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-container {
        padding: 0 20px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .partner-logo img {
        max-height: 60px;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-container {
        padding: 0 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Contact Form Section */
    .contact-form-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form-image {
        min-height: 300px;
    }
    
    .contact-form-wrapper {
        padding: 40px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 0 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    .logo img {
        height: 35px;
    }
    
    .hero-text h1 {
        font-size: 25px;
    }
    
    .hero-text h3 {
        font-size: 14px;
    }
    
    .btn {
        font-size: 12px;
        padding: 10px 30px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .header-inner {
        padding: 10px 20px;
    }
    
    .slide-content h2 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partner-logo img {
        max-height: 50px;
    }
}
    .contact-form-wrapper {
        padding: 30px 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }


/* === SCROLL TO TOP BUTTON === */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #d9151f;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(217, 21, 31, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #a01015;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(217, 21, 31, 0.4);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* === LOADING ANIMATION === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* === SMOOTH IMAGES === */
img {
    transition: all 0.3s ease;
}

/* === ENHANCED RESPONSIVE DESIGN === */

/* Tablet & Mobile Navigation */
@media only screen and (max-width: 980px) {
    .header-inner {
        padding: 10px 15px;
    
    .et_mobile_nav_menu {
        display: block;
    }
    }
    
    .nav-wrapper,
    .main-nav {
        display: none;
    }
    
    .logo-wrapper {
        border-right: none;
        padding-right: 15px;
        margin-right: 15px;
    }
    
    .column-right {
        gap: 10px;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .service-card-large {
        grid-column: 1 !important;
    }
    
    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
}

/* Mobile Optimization */
@media only screen and (max-width: 767px) {
    body {
        font-size: 14px;
    }
    
    .header-inner {
        padding: 8px 10px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .logo-wrapper {
        padding-right: 10px;
        margin-right: 10px;
    }
    
    .btn,
    .btn-primary,
    .btn-remote {
        font-size: 11px;
        padding: 10px 20px;
        letter-spacing: 0.5px;
    }
    
    /* Hero */
    .hero-text h1 {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .hero-text h3 {
        font-size: 15px;
    }
    
    .hero-section {
        padding: 30px 0;
    }
    
    /* Sections */
    .et_pb_section {
        padding: 40px 0 !important;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    /* Service Cards */
    .service-card {
        padding: 30px 20px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .service-card p {
        font-size: 15px;
    }
    
    /* News Slider */
    .news-slider-section {
        padding: 40px 0;
    }
    
    .slider-container {
        padding: 0 15px;
    }
    
    .slide-content h2 {
        font-size: 22px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .partner-logo img {
        max-height: 60px;
    }
    
    /* Footer */
    .footer-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .footer-column h4 {
        font-size: 18px;
    }
    
    .footer-hours p,
    .footer-contact a,
    .footer-services a {
        font-size: 15px;
    }
    
    .footer-bottom {
        padding: 20px 15px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Contact Form */
    .contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 14px;
    }
    
    /* Scroll to Top */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Small Mobile */
@media only screen and (max-width: 480px) {
    .hero-text h1 {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-remote {
        font-size: 10px;
        padding: 8px 15px;
    }
}

/* === MOBILE MENU STYLES === */
@media only screen and (max-width: 980px) {
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        display: none;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    .mobile-menu-container {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100%;
        background: #fff;
        z-index: 9999;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    
    .mobile-menu-container.active {
        right: 0;
    }
    
    .mobile-menu-header {
        padding: 20px;
        border-bottom: 1px solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-close {
        background: none;
        border: none;
        font-size: 28px;
        color: #d9151f;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-nav {
        padding: 20px 0;
    }
    
    .mobile-menu-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-menu-nav > ul > li {
        border-bottom: 1px solid #eee;
    }
    
    .mobile-menu-nav a {
        display: block;
        padding: 15px 20px;
        color: #333;
        text-decoration: none;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-nav a:hover {
        background: #f5f5f5;
        color: #d9151f;
        padding-left: 25px;
    }
    
    .mobile-submenu {
        display: none;
        background: #f9f9f9;
    }
    
    .mobile-submenu.active {
        display: block;
    }
    
    .mobile-submenu a {
        padding: 12px 20px 12px 40px;
        font-size: 14px;
        font-weight: 500;
    }
    
    .mobile-menu-toggle-submenu {
        background: none;
        border: none;
        padding: 15px 20px;
        width: 100%;
        text-align: left;
        color: #333;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-toggle-submenu:after {
        content: '+';
        font-size: 20px;
        color: #d9151f;
    }
    
    .mobile-menu-toggle-submenu.active:after {
        content: '−';
    }
}

/* === MOBILE BURGER MENU === */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    background: rgba(217, 21, 31, 0.05);
    border: 2px solid #d9151f;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle:hover {
    background: rgba(217, 21, 31, 0.1);
    transform: scale(1.05);
}

.mobile-menu-toggle.active {
    background: #d9151f;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: #d9151f;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.mobile-menu-toggle.active span {
    background: #fff;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-menu.active {
    max-height: 600px;
    overflow-y: auto;
}

.mobile-nav-menu ul {
    list-style: none;
    padding: 15px 20px 25px;
}

.mobile-nav-menu ul li {
    margin-bottom: 0;
    animation: slideIn 0.3s ease forwards;
    opacity: 0;
}

.mobile-nav-menu.active ul li {
    opacity: 1;
}

.mobile-nav-menu ul li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-menu ul li:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav-menu ul li:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav-menu ul li:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav-menu ul li:nth-child(5) { animation-delay: 0.3s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav-menu ul li a {
    display: block;
    padding: 16px 15px;
    color: #2c3e50;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 17px;
    border-radius: 10px;
    margin-bottom: 5px;
    background: #fff;
    border-left: 4px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.mobile-nav-menu ul li a:hover,
.mobile-nav-menu ul li a:active {
    color: #d9151f;
    background: #fff;
    border-left-color: #d9151f;
    padding-left: 20px;
    box-shadow: 0 4px 15px rgba(217, 21, 31, 0.15);
    transform: translateX(5px);
}

.mobile-nav-menu .sub-menu {
    padding-left: 15px;
    padding-top: 5px;
}

.mobile-nav-menu .sub-menu li a {
    font-size: 15px;
    padding: 12px 15px;
    font-weight: 500;
    background: #f8f9fa;
    margin-bottom: 3px;
}

@media only screen and (max-width: 980px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav-menu {
        display: block;
    }
    
    .btn-remote {
        display: none !important;
    }
}


/* ==========================================
   SUBPAGE STYLES - MODERN & RESPONSIVE
   ========================================== */

/* Page Hero Section */
.page-hero-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #ededed 100%);
    position: relative;
    overflow: hidden;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 21, 31, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.page-hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease forwards;
}

.page-hero-text p.hero-label {
    color: #d9151f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeInUp 0.6s ease forwards;
}

.page-hero-text p.hero-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 19px;
    line-height: 1.8;
    color: #333;
    margin: 0;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero-image {
    animation: fadeInRight 1s ease forwards;
}

.page-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-hero-image img:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 30px 80px rgba(217, 21, 31, 0.2);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Content Sections */
.content-section {
    padding: 100px 40px;
    position: relative;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: #000;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #d9151f, transparent);
    border-radius: 2px;
}

.content-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: #000;
    margin-bottom: 25px;
}

.content-section p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 25px;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(217, 21, 31, 0.15);
    border-color: rgba(217, 21, 31, 0.2);
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #000;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #d9151f;
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Lists Styling */
.content-section ul {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.content-section ul li {
    padding: 20px 20px 20px 50px;
    margin-bottom: 15px;
    position: relative;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.content-section ul li:hover {
    background: #f9f9f9;
    border-left-color: #d9151f;
    padding-left: 55px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.content-section ul li::before {
    /* content: '✓'; */
    position: absolute;
    left: 20px;
    top: 20px;
    color: #d9151f;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
}

.content-section ul li strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #000;
    display: block;
    margin-bottom: 5px;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Image Styling */
.content-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.content-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(217, 21, 31, 0.15);
}

/* CTA Sections */
.cta-section {
    background: linear-gradient(135deg, #d9151f 0%, #a01018 100%);
    color: #fff;
    text-align: center;
    padding: 80px 40px;
    border-radius: 20px;
    margin: 60px auto;
    max-width: 1200px;
}

.cta-section h2 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-section p {
    color: #fff;
    font-size: 20px;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-button {
    background: #fff;
    color: #d9151f;
    padding: 18px 50px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   RESPONSIVE DESIGN FOR SUBPAGES
   ========================================== */

@media only screen and (max-width: 980px) {
    .page-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 80px 30px;
    }
    
    .page-hero-text h1 {
        font-size: 42px;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .content-section {
        padding: 60px 30px;
    }
    
    .content-section h2 {
        font-size: 36px;
    }
}

@media only screen and (max-width: 767px) {
    .page-hero-container {
        padding: 60px 20px;
        gap: 40px;
    }
    
    .page-hero-text h1 {
        font-size: 36px;
    }
    
    .page-hero-text p.hero-description {
        font-size: 17px;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .content-section {
        padding: 50px 20px;
    }
    
    .content-section h2 {
        font-size: 32px;
    }
    
    .content-section h3 {
        font-size: 24px;
    }
    
    .content-section p {
        font-size: 16px;
    }
    
    .cta-section {
        padding: 60px 30px;
        margin: 40px 20px;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .cta-section p {
        font-size: 18px;
    }
}

@media only screen and (max-width: 480px) {
    .page-hero-text h1 {
        font-size: 28px;
    }
    
    .page-hero-text p.hero-label {
        font-size: 12px;
    }
    
    .page-hero-text p.hero-description {
        font-size: 16px;
    }
    
    .content-section h2 {
        font-size: 28px;
    }
    
    .content-section h3 {
        font-size: 22px;
    }
    
    .content-section p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        font-size: 50px;
    }
    
    .cta-section h2 {
        font-size: 26px;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 13px;
    }
}


/* ==========================================
   IT-SECURITY PAGE RESPONSIVE
   ========================================== */

/* Hero Section Responsive for IT-Security */
@media only screen and (max-width: 980px) {
    .page-hero-section .page-hero-container {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
        padding: 60px 30px !important;
    }
    
    .page-hero-section h1 {
        font-size: 38px !important;
    }
    
    .page-hero-section h2 {
        font-size: 22px !important;
    }
}

@media only screen and (max-width: 767px) {
    .page-hero-section .page-hero-container {
        padding: 50px 20px !important;
        gap: 40px !important;
    }
    
    .page-hero-section h1 {
        font-size: 32px !important;
    }
    
    .page-hero-section h2 {
        font-size: 20px !important;
    }
    
    .page-hero-section p {
        font-size: 16px !important;
    }
    
    .content-section h2 {
        font-size: 32px !important;
    }
    
    .content-section h3 {
        font-size: 26px !important;
    }
    
    .content-section p {
        font-size: 16px !important;
    }
    
    /* Grid 2-Spalten zu 1-Spalte */
    .content-section > div > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

@media only screen and (max-width: 480px) {
    .page-hero-section h1 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    
    .page-hero-section h2 {
        font-size: 18px !important;
    }
    
    .page-hero-section p {
        font-size: 15px !important;
    }
    
    .content-section {
        padding: 50px 20px !important;
    }
    
    .content-section h2 {
        font-size: 28px !important;
    }
    
    .content-section h3 {
        font-size: 24px !important;
    }
}

/* ============================================
   LARGE SCREENS - HEADER & FOOTER ONLY
   ============================================ */
@media only screen and (min-width: 1920px) {
    
    /* === HEADER === */
    .header-inner {
        max-width: 2700px;
        padding: 15px 00px 15px 40px;
    }
    
    .header-row {
        height: 75px;
    }
    
    .logo img {
        height: 60px;
    }
    
    .nav-menu {
        gap: 40px;
    }
    
    .nav-menu > li > a {
        font-size: 16px;
    }
    
    .btn-remote {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    /* === FOOTER === */
    .footer-container {
        max-width: 2200px;
        padding: 0 80px;
        gap: 150px;
    }
    
    .footer-logo img {
        height: 90px;
    }
    
    .footer-column h4 {
        font-size: 24px;
    }
    
    .footer-hours p,
    .footer-contact a,
    .footer-services a {
        font-size: 19px;
    }
    
    .footer-bottom-container {
        max-width: 2700px;
        padding: 0 80px;
    }
    
    .footer-links a {
        font-size: 18px;
    }
}

/* ============================================
   EXTRA LARGE SCREENS - HEADER & FOOTER ONLY
   ============================================ */
@media only screen and (min-width: 2560px) {
    
    /* === HEADER === */
    .header-inner {
        max-width: 3300px;
        /* padding: 20px 100px 20px 100px; */
    }
    
    .header-row {
        height: 85px;
    }
    
    .logo img {
        height: 70px;
    }
    
    .nav-menu {
        gap: 50px;
    }
    
    .nav-menu > li > a {
        font-size: 18px;
    }
    
    .btn-remote {
        padding: 16px 35px;
        font-size: 18px;
    }
    
    /* === FOOTER === */
    .footer-container {
        max-width: 3300px;
        padding: 0 100px;
        gap: 200px;
    }
    
    .footer-logo img {
        height: 100px;
    }
    
    .footer-column h4 {
        font-size: 26px;
    }
    
    .footer-hours p,
    .footer-contact a,
    .footer-services a {
        font-size: 20px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .footer-bottom-container {
        max-width: 2800px;
        padding: 0 100px;
    }
    
    .footer-links a {
        font-size: 19px;
    }
}
