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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fff;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}
.col-md-6{flex: 0 0 50%;max-width: 50%;padding: 0 15px;}
.col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 15px;
}

.col-lg-5{flex: 0 0 41.666667%;max-width: 41.666667%;padding: 0 15px;}
.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-xl-2 {flex: 0 0 16.666667%;max-width: 16.666667%;padding: 0 15px;}
.col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}
.col-xl-4{flex: 0 0 33.333333%;max-width: 33.333333%;padding: 0 15px;}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-12{flex: 0 0 100%;max-width: 100%;padding: 0 15px;}

@media (max-width: 768px) {
    .col-md-4,
    .col-md-6,
    .col-md-8,
    .col-lg-5,
    .col-lg-6,
    .col-xl-2,
    .col-xl-3,
    .col-xl-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
}

.d-flex{display: flex !important;}
.d-block {display: block !important;}
.align-items-center {align-items: center !important;}
.justify-content-center{justify-content: center !important;}
.text-center {text-align: center !important;}
.text-right{text-align: right !important;}

.mb-0 {margin-bottom: 0 !important;}
.mb-4{margin-bottom: 1.5rem !important;}
.mb-5 {margin-bottom: 3rem !important;}
.pb-3{padding-bottom: 1rem !important;}
.pb-5 {padding-bottom: 3rem !important;}
.pl-3{padding-left: 1rem !important;}
.p-4 {padding: 1.5rem !important;}
.mt-3{margin-top: 1rem !important;}
.mr-auto {margin-right: auto !important;}
.ml-md-0{margin-left: 0 !important;}
.py-3 {padding-top: 1rem !important;padding-bottom: 1rem !important;}
.px-md-4{padding-left: 1.5rem !important;padding-right: 1.5rem !important;}

.d-none{display: none !important;}
.d-lg-block {display: block !important;}

@media (max-width: 991.98px) {
    .d-lg-block{display: none !important;}
}

.d-xl-none {display: none !important;}

@media (min-width: 1200px) {
    .d-xl-none{display: none !important;}
}

.d-xl-block{display: none !important;}

@media (min-width: 1200px) {
    .d-xl-block {display: block !important;}
}

.d-inline-block{display: inline-block !important;}

h1, h2, h3, h4, h5, h6{
    font-family: 'Georgia', serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3{font-size: 1.8rem;margin-bottom: 0.8rem;}

h4 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

p{
    margin-bottom: 1rem;
    color: #5a5a5a;
    font-size: 1rem;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: #f9dc5c;
    transition: color 0.3s ease;
}

a:hover{color: #fae588;}

.site-navbar-aeyits {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid #fcefb4;
}

.navbar-wrapper-lum {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section-scope .site-logo-aeyits a {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f9dc5c;
    text-decoration: none;
}

.logo-dot-lum {
    color: #fae588;
}

.nav-menu-scope {
    display: flex;
}

.menu-lista-aeyits {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link-lum {
    color: #2c2c2c;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-link-lum:hover {
    background: #fcefb4;
    color: #1a1a1a;
}

.mobile-toggle-scope {
    display: none;
    cursor: pointer;
}

.mobile-icon-aeyits {
    font-size: 1.5rem;
    color: #f9dc5c;
}

@media (max-width: 768px) {
    .nav-menu-scope {
        display: none;
    }
    
    .mobile-toggle-scope {
        display: block;
    }
}

.site-mobile-menu{
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 2000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.offcanvas-menu .site-mobile-menu{right: 0;}

.site-mobile-menu-header {
    padding: 1rem;
    border-bottom: 1px solid #fcefb4;
}

.site-mobile-menu-close{text-align: right;}

.site-mobile-menu-close span {
    font-size: 1.5rem;
    cursor: pointer;
    color: #f9dc5c;
}

.site-mobile-menu-body ul{list-style: none;padding: 1rem;}

.site-mobile-menu-body ul li{margin-bottom: 0.5rem;}

.site-mobile-menu-body ul li a {
    display: block;
    padding: 0.8rem;
    color: #2c2c2c;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.site-mobile-menu-body ul li a:hover{background: #fcefb4;}

.cookie-notice-aeyits {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1rem;
    z-index: 1500;
    display: none;
}

.cookie-wrap-lum{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-btns-aeyits{display: flex;gap: 1rem;}

.cookie-yes-btn,
.cookie-no-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-yes-btn{
    background: #f9dc5c;
    color: #2c2c2c;
}

.cookie-no-btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-yes-btn:hover{background: #fae588;}

.cookie-no-btn:hover {
    background: #ffffff;
    color: #2c2c2c;
}

.calc-hero-area {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #f9dc5c 0%, #fae588 50%, #fcefb4 100%);
    position: relative;
}

.hero-center-wrapper-aeyits {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    min-height: 80vh;
}

.hero-content-lum {
    flex: 1;
    max-width: 500px;
}

.main-title-scope {
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    line-height: 1.1;
}

.hero-facts-aeyits {
    margin-top: 1.5rem;
}

.hero-desc-lum {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.calc-container-scope {
    flex: 1;
    max-width: 500px;
}

.solar-kalkylator-aeyits{
    background: rgba(255,255,255,0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.calc-title-lum {
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
}

.form-grupp-aeyits{margin-bottom: 2rem;}

.calc-label-lum {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.calc-select-scope,
.calc-slider-scope {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #fcefb4;
    border-radius: 8px;
    background: #fff;
    color: #2c2c2c;
    font-size: 1rem;
}

.calc-select-scope:focus,
.calc-slider-scope:focus{
    outline: none;
    border-color: #f9dc5c;
}

.range-val-aeyits {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.calc-resultat-lum {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.result-box-scope {
    background: #fdf8e1;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.result-title-aeyits {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.result-number-lum{
    font-size: 2rem;
    font-weight: 800;
    color: #f9dc5c;
    margin-bottom: 0.5rem;
}

.result-desc-scope {
    color: #5a5a5a;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-center-wrapper-aeyits {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .main-title-scope {
        font-size: 2.5rem;
    }
    
    .calc-container-scope {
        width: 100%;
    }
    
    .calc-resultat-lum {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.pricing-grid-area {
    padding: 5rem 0;
    background: #fdf8e1;
}

.sub-heading-aeyits {
    color: #f9dc5c;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title-lum {
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.price-card-scope{
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.price-card-scope:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.popular-pakket-aeyits {
    border: 3px solid #f9dc5c;
}

.popular-badge-lum {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f9dc5c;
    color: #1a1a1a;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
}

.price-img-aeyits {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.price-info-lum{padding: 2rem;}

.package-name-scope {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price-amount-aeyits{
    color: #f9dc5c;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.package-desc-lum {
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.price-lista-scope {
    list-style: none;
    padding: 0;
}

.price-lista-scope li {
    color: #5a5a5a;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.price-lista-scope li::before {
    content: "✓";
    color: #f9dc5c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.case-study-area{
    padding: 5rem 0;
    background: #ffffff;
}

.case-content-aeyits {
    padding-right: 2rem;
}

.case-desc-scope {
    color: #5a5a5a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.case-stats-lum{
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item-scope {
    text-align: center;
}

.stat-number-aeyits {
    font-size: 3rem;
    font-weight: 800;
    color: #f9dc5c;
    margin-bottom: 0.5rem;
}

.stat-label-lum{
    color: #5a5a5a;
    margin: 0;
}

.case-gallery-aeyits{
    padding-left: 2rem;
}

.gallery-grid-scope {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-img-lum {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-img-lum:hover{
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.img-modal-aeyits {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    cursor: pointer;
}

.modal-content-scope {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    margin-top: 2%;
    border-radius: 10px;
}

.modal-close-lum {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.questions-area{
    padding: 5rem 0;
    background: #fcefb4;
}

.question-item-scope {
    margin-bottom: 1.5rem;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.q-title-aeyits {
    background: #fdf8e1;
    padding: 1.2rem;
    margin: 0;
    cursor: pointer;
    color: #1a1a1a;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: none;
    width: 100%;
    text-align: left;
}

.q-title-aeyits:hover{
    background: #f9dc5c;
    color: #1a1a1a;
}

.q-answer-lum {
    padding: 1.2rem;
    margin: 0;
    background: #ffffff;
    color: #5a5a5a;
}

.hidden-answer-scope{display: none;}

.services-wrap-area {
    padding: 5rem 0;
    background: #ffffff;
}

.service-kort-aeyits{
    text-align: center;
    padding: 2rem;
    background: #fdf8e1;
    border-radius: 15px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-kort-aeyits:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-icon-lum {
    width: 80px;
    height: 80px;
    background: #f9dc5c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon-lum .fas {
    color: #1a1a1a;
    font-size: 2.5rem;
}

.service-titel-scope {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-text-aeyits{
    color: #5a5a5a;
    margin: 0;
}

.company-info-area {
    padding: 5rem 0;
    background: #fcefb4;
}

.company-img-aeyits{
    text-align: center;
}

.team-foto-lum {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.company-text-scope{
    padding-left: 2rem;
}

.company-desc-aeyits{
    color: #5a5a5a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-box-lum {
    margin-top: 2rem;
}

.contact-info-scope {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-info-scope .fas {
    color: #f9dc5c;
    font-size: 2rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-title-aeyits{
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-detail-lum {
    color: #5a5a5a;
    margin: 0;
}

.reviews-area-aeyits{
    padding: 5rem 0;
    background: #fdf8e1;
}

.review-card-scope {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.review-card-scope:hover{
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.review-text-lum {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #5a5a5a;
    font-size: 1.1rem;
}

.reviewer-info-aeyits h4{
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.reviewer-name-scope{
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.reviewer-area-lum {
    color: #999999;
    font-size: 0.9rem;
    margin: 0;
}

.final-contact-area{
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9dc5c 0%, #fae588 100%);
    color: #1a1a1a;
}

.creative-cta-aeyits {
    position: relative;
    padding: 3rem;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

.sun-animation-lum {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 60px;
    height: 60px;
    background: #fae588;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(249, 220, 92, 0.6);
}

.rotating-sun-scope {
    color: #1a1a1a;
    font-size: 2rem;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-title-aeyits {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 800;
}

.cta-desc-lum {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cta-buttons-scope {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-phone-btn-aeyits,
.cta-visit-btn-lum {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-phone-btn-aeyits {
    background: #1a1a1a;
    color: #ffffff;
}

.cta-visit-btn-lum {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.cta-phone-btn-aeyits:hover {
    background: #2c2c2c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-visit-btn-lum:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-promise-scope {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.cta-promise-scope p {
    color: #2c2c2c;
    font-weight: 600;
    margin: 0;
}

.footer-aeyits {
    background: #2c2c2c;
    color: #ffffff;
}

.footer-main-lum {
    padding: 3rem 0;
}

.footer-block-scope{margin-bottom: 2rem;}

.footer-logo-aeyits h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.footer-text-lum{
    color: #cccccc;
    line-height: 1.7;
}

.footer-title-aeyits {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-lista-lum {
    list-style: none;
}

.footer-lista-lum li{margin-bottom: 0.5rem;}

.footer-lista-lum li a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-lista-lum li a:hover{color: #f9dc5c;}

.footer-kontakt-lum p {
    margin-bottom: 0.8rem;
    color: #cccccc;
}

.footer-bottom-scope {
    background: #1a1a1a;
    padding: 1.5rem 0;
}

.footer-border-aeyits{
    border-top: 1px solid #444444;
    padding-top: 1.5rem;
}

.copyright-text-lum {
    color: #999999;
    margin: 0;
}

.footer-links-scope{
    text-align: right;
}

.footer-links-scope a {
    color: #999999;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.footer-links-scope a:hover{color: #f9dc5c;}

.thank-you-page-aeyits {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f9dc5c 0%, #fae588 50%, #fcefb4 100%);
    padding: 2rem;
}

.thank-container-lum {
    max-width: 600px;
    width: 100%;
}

.thank-content-scope {
    background: rgba(255,255,255,0.95);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.thank-title-aeyits {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.thank-message-lum {
    color: #5a5a5a;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.back-home-btn-scope {
    display: inline-block;
    padding: 1rem 2rem;
    background: #f9dc5c;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.back-home-btn-scope:hover {
    background: #fae588;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 220, 92, 0.3);
}

.legal-page-aeyits {
    padding: 8rem 0 5rem;
    background: #fdf8e1;
    min-height: 100vh;
}

.legal-content-lum {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.page-header-scope {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #fcefb4;
}

.legal-title-aeyits {
    color: #1a1a1a;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.last-updated-lum {
    color: #7a7a7a;
    font-style: italic;
    margin: 0;
}

.legal-section-scope {
    margin-bottom: 2.5rem;
}

.section-heading-aeyits {
    color: #1a1a1a;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    border-left: 4px solid #f9dc5c;
    padding-left: 1rem;
}

.legal-text-lum {
    color: #5a5a5a;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1rem;
}

.back-link-scope {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #fcefb4;
}

.back-button-aeyits {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: #f9dc5c;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-button-aeyits:hover {
    background: #fae588;
    transform: translateY(-2px);
}

.vision-hero-aeyits {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #f9dc5c 0%, #fae588 100%);
    text-align: center;
}

.vision-content-lum {
    max-width: 600px;
    margin: 0 auto;
}

.vision-title-scope {
    color: #1a1a1a;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.vision-subtitle-aeyits {
    color: #2c2c2c;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 500;
}

.mission-section-lum {
    padding: 5rem 0;
    background: #ffffff;
}

.mission-text-scope {
    padding-right: 2rem;
}

.mission-heading-aeyits {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.mission-desc-lum {
    color: #5a5a5a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.mission-img-aeyits {
    text-align: center;
}

.vision-foto-lum {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.values-section-scope {
    padding: 5rem 0;
    background: #fcefb4;
}

.values-title-aeyits {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.values-intro-lum {
    color: #5a5a5a;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.value-card-aeyits {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.value-card-aeyits:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-icon-lum {
    width: 80px;
    height: 80px;
    background: #f9dc5c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon-lum .fas {
    color: #1a1a1a;
    font-size: 2rem;
}

.value-name-scope {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.value-text-aeyits {
    color: #5a5a5a;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.team-section-aeyits {
    padding: 5rem 0;
    background: #fdf8e1;
}

.team-content-lum {
    padding-right: 2rem;
}

.team-heading-scope {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.team-desc-aeyits {
    color: #5a5a5a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.team-stats-lum {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-box-scope {
    text-align: center;
    background: rgba(249, 220, 92, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
}

.stat-num-aeyits {
    color: #f9dc5c;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label-lum {
    color: #5a5a5a;
    margin: 0;
    font-size: 0.9rem;
}

.team-gallery-aeyits {
    padding-left: 2rem;
}

.gallery-row-lum {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.team-img-scope {
    width: 50%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.future-section-scope {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fae588 0%, #fcefb4 100%);
}

.future-title-aeyits {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.future-desc-lum {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.cta-vision-aeyits {
    background: rgba(255,255,255,0.3);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

.cta-vision-title-lum {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.vision-cta-btn-scope {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vision-cta-btn-scope:hover {
    background: #2c2c2c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.contact-hero-aeyits {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #f9dc5c 0%, #fae588 100%);
    text-align: center;
}

.contact-hero-content-lum {
    max-width: 600px;
    margin: 0 auto;
}

.contact-title-scope {
    color: #1a1a1a;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.contact-subtitle-aeyits {
    color: #2c2c2c;
    font-size: 1.2rem;
    margin: 0;
}

.contact-main-section-lum {
    padding: 5rem 0;
    background: #ffffff;
}

.contact-info-wrapper-scope {
    padding-right: 2rem;
}

.contact-info-title-aeyits {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-intro-lum {
    color: #5a5a5a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-methods-aeyits {
    margin-top: 3rem;
}

.contact-method-scope {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #fdf8e1;
    border-radius: 10px;
}

.method-icon-lum {
    width: 60px;
    height: 60px;
    background: #f9dc5c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.method-icon-lum .fas {
    color: #1a1a1a;
    font-size: 1.5rem;
}

.method-content-aeyits {
    flex: 1;
}

.method-title-scope {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.method-detail-lum {
    color: #2c2c2c;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.method-note-aeyits {
    color: #7a7a7a;
    margin: 0;
    font-size: 0.9rem;
}

.contact-form-wrapper-aeyits {
    background: #fcefb4;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.form-title-lum {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    text-align: center;
}

.form-desc-scope {
    color: #5a5a5a;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form-aeyits {
    max-width: 100%;
}

.form-row-lum {
    margin-bottom: 1.5rem;
}

.form-field-scope {
    width: 100%;
}

.field-label-aeyits {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-weight: 600;
}

.form-input-lum,
.form-select-scope,
.form-textarea-aeyits {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    background: rgba(255,255,255,0.8);
    color: #2c2c2c;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input-lum:focus,
.form-select-scope:focus,
.form-textarea-aeyits:focus {
    outline: none;
    border-color: #f9dc5c;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(249, 220, 92, 0.3);
}

.form-input-lum::placeholder,
.form-textarea-aeyits::placeholder {
    color: #999999;
}

.form-submit-lum {
    text-align: center;
    margin-top: 2rem;
}

.submit-button-scope {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: #f9dc5c;
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button-scope:hover {
    background: #fae588;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 220, 92, 0.3);
}

.submit-note-aeyits {
    color: #7a7a7a;
    font-size: 0.8rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

.location-section-scope {
    padding: 5rem 0;
    background: #fdf8e1;
}

.location-content-aeyits {
    padding-right: 2rem;
}

.location-title-lum {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.location-desc-scope {
    color: #5a5a5a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.location-details-aeyits {
    margin-top: 2rem;
}

.detail-item-lum {
    color: #2c2c2c;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(249, 220, 92, 0.1);
    border-radius: 5px;
}

.working-hours-scope {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.hours-title-aeyits {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.hours-list-lum {
    margin-bottom: 2rem;
}

.hour-item-scope {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #fcefb4;
}

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

.day-aeyits {
    color: #2c2c2c;
    font-weight: 600;
}

.time-lum {
    color: #5a5a5a;
}

.emergency-contact-aeyits {
    padding-top: 1.5rem;
    border-top: 2px solid #fcefb4;
}

.emergency-title-scope {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.emergency-text-lum {
    color: #5a5a5a;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .case-content-aeyits,
    .case-gallery-aeyits,
    .company-text-scope,
    .contact-info-wrapper-scope,
    .mission-text-scope,
    .team-content-lum,
    .team-gallery-aeyits,
    .location-content-aeyits {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 2rem;
    }
    
    .case-stats-lum,
    .team-stats-lum {
        justify-content: center;
        gap: 1rem;
    }
    
    .gallery-row-lum {
        flex-direction: column;
    }
    
    .team-img-scope {
        width: 100%;
    }
    
    .vision-title-scope,
    .contact-title-scope {
        font-size: 2.5rem;
    }
    
    .legal-content-lum,
    .contact-form-wrapper-aeyits {
        padding: 2rem;
    }
    
    .footer-links-scope {
        text-align: left;
        margin-top: 1rem;
    }


    
    .footer-links-scope a{
        margin-left: 0;
        margin-right: 1.5rem;
    }

    .legal-title-aeyits {
        font-size: 1.5rem;
    }
}

.heading-section{z-index: 0;}
.position-relative{position: relative !important;}
.offset-xl-1 {margin-left: 8.333333%;}

@media (max-width: 1199.98px) {
    .offset-xl-1{margin-left: 0;}
}

.rounded{border-radius: 50px !important;}