<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base Styles */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    #vegas-slider,
    #start-screen,
    .section,
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* Logo Styles */
#top-bar__logo {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    position: relative;
    z-index: 1002;
}

#top-bar__logo img {
    height: 40px !important;
    width: auto !important;
    vertical-align: middle !important;
}

/* Navigation Styles */
#top-bar__navigation {
    padding-left: 150px;
    display: flex;
    justify-content: flex-end;
}

#top-bar__navigation ul {
    display: flex;
    align-items: center;
}

#top-bar__navigation li {
    margin-left: 20px;
}

/* Language Menu Styles */
.language-menu {
    position: relative;
    margin-left: 20px;
    display: block;
}

.lang-toggle {
    background-color: #4A8B71;
    color: white !important;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    margin-top: 8px;
    border-radius: 8px;
    padding: 8px 0;
    overflow-y: auto;
    pointer-events: auto;
    max-height: 350px;

}

.dropdown-menu.show {
    display: block;
}

/* Language List */
.dropdown-menu ul.language-list {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
}

.dropdown-menu ul.language-list li {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid #eee !important;
}

.dropdown-menu ul.language-list li:last-child {
    border-bottom: none !important;
}

.language-list a {
    display: flex !important;
    align-items: center;
    padding: 10px 20px !important;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
    position: relative;
}

.language-list a img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.language-list a:hover {
    background: #f5f5f5;
}

.language-list a.active {
    background: #f0f0f0;
    font-weight: 500;
}

.language-list a.active:after {
    content: "âœ“";
    position: absolute;
    right: 16px;
    color: #4A8B71;
}

/* Dropdown Divider &amp; Header */
.dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 8px 0;
}

.dropdown-header {
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

/* Hamburger Menu */
#top-bar__navigation-toggler {
    display: none;
    background: none;
    border: none;
    padding: 15px;
    cursor: pointer;
}

#top-bar__navigation-toggler span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    position: relative;
    transition: background-color 0.3s;
}

#top-bar__navigation-toggler span:before,
#top-bar__navigation-toggler span:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #333;
    left: 0;
    transition: all 0.3s ease;
}

#top-bar__navigation-toggler span:before {
    top: -8px;
}

#top-bar__navigation-toggler span:after {
    bottom: -8px;
}

#top-bar__navigation-toggler.active span {
    background-color: transparent;
}

#top-bar__navigation-toggler.active span:before {
    top: 0;
    transform: rotate(45deg);
}

#top-bar__navigation-toggler.active span:after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Hamburger toggler */
    #top-bar__navigation-toggler {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 1001;
    }

    /* Navigation */
    #top-bar__navigation {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 999;
        text-align: center;
    }

    #top-bar__navigation.active {
        display: block;
        overflow: visible;
    }

    #top-bar__navigation ul {
        display: block !important;
        padding: 0 !important;
        margin: 0 auto !important;
        text-align: center !important;
        width: 100%;
    }

    #top-bar__navigation li {
        display: block !important;
        margin: 0 !important;
        padding: 10px 0 !important;
        border-bottom: 1px solid #eee;
    }

    #top-bar__navigation li:last-child {
        border-bottom: none;
    }

    .language-menu {
        position: static;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* Mobile Language Menu Optimization */
    .dropdown-menu {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        transform: none;
        width: 100%;
        max-height: 50vh !important;
        margin: 0;
        border-radius: 12px 12px 0 0 !important;
        padding: 8px 0 !important;
        z-index: 9999;
        border-top: 2px solid #4A8B71 !important;
        box-shadow: 0 -8px 32px rgba(0,0,0,0.1) !important;
    }

    .language-list {
        max-height: calc(60vh - 50px) !important;
        padding: 8px !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .language-list a {
        padding: 0px 16px !important;
        font-size: 14px !important;
        border-radius: 6px !important;
        margin: 0 0 !important;
        background: #fff !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
    }

    .lang-toggle {
        width: 100%;
        border-radius: 0;
        justify-content: center;
        padding: 10px 16px !important;
        font-size: 14px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
    }

    .language-list a img {
        width: 20px !important;
        height: 20px !important;
        margin-right: 10px !important;
    }

    .dropdown-header {
        padding: 4px 16px 8px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        color: #666 !important;
        background: #f8f8f8 !important;
    }

    .dropdown-divider {
        margin: 8px 0 !important;
        background: rgba(0,0,0,0.1) !important;
    }

    .language-list a.active {
        background: #f0faf5 !important;
        font-weight: 500 !important;
    }

    .language-list a.active:after {
        right: 16px !important;
        font-size: 14px !important;
    }
}

/* Desktop Styles */
@media (min-width: 769px) {
    #top-bar__navigation {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    #top-bar__navigation-toggler {
        display: none;
    }

    .dropdown-menu {
        padding: 15px 0 !important;
        border-radius: 12px !important;
        box-shadow: 0 12px 32px rgba(0,0,0,0.15) !important;
        border: 1px solid #e0e0e0 !important;
        min-width: 260px !important;
        transform: translateY(10px) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .language-list a {
        padding: 4px 16px !important;
        font-size: 15px !important;
        gap: 15px !important;
        border-radius: 6px !important;
        margin: 2px 12px !important;
    }

    .language-list a img {
        width: 24px !important;
        height: 24px !important;
        margin-right: 15px !important;
    }

    .dropdown-header {
        padding: 4px 16px !important;
        font-size: 12px !important;
        letter-spacing: 0.5px !important;
        color: #4A8B71 !important;
        background: #f8f8f8 !important;
        margin: 8px 0 !important;
    }

    .dropdown-divider {
        margin: 15px 0 !important;
        background: #e0e0e0 !important;
    }

    .language-list a.active:after {
        right: 25px !important;
        font-size: 16px !important;
    }

    .lang-toggle {
        transition: all 0.3s ease !important;
        padding: 10px 20px !important;
    }

    .lang-toggle:hover {
        background-color: #3a7a5d !important;
        transform: translateY(-1px);
    }
}

/* Mobile menu scroll fix */
@media (max-width: 768px) {
    #top-bar__navigation {
        top: 60px;
        height: calc(100vh - 60px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu {
        touch-action: pan-y;
    }

    @supports (-webkit-overflow-scrolling: touch) {
        #top-bar__navigation {
            position: fixed;
            bottom: 0;
            height: auto;
            max-height: calc(100vh - 60px);
        }
    }
}

/* Animations */
@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .dropdown-menu.show {
        animation: slideUp 0.3s ease-out !important;
    }
}

@media (min-width: 769px) {
    .dropdown-menu.show {
        animation: fadeIn 0.2s ease-out !important;
    }
}

/* CONTACT FORM STYLES */
/* Form Input Styles */
.input-wrp {
    position: relative;
    margin-bottom: 20px;
}

.textfield {
    width: 100%;
    padding: 15px 45px;
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
    border-radius: 4px;
    font-size: 16px;
}

.textfield::placeholder {
    color: #ccc;
    opacity: 1;
}

/* Icons in Form */
.input-wrp i.fontello-user,
.input-wrp i.fontello-mail,
.input-wrp i.fontello-comment {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 18px;
}

/* Message Area */
.input-wrp textarea.textfield {
    min-height: 120px;
}

.input-wrp i.fontello-comment {
    top: 25px;
    transform: none;
}

/* Phone Input Styles */
.iti {
    width: 100%;
    background-color: #333;
}

.iti__country-list {
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
}

.iti__country {
    color: #fff;
}

.iti__country:hover,
.iti__country.iti__active {
    background-color: #444;
}

.iti__selected-flag {
    background-color: #333;
    padding-left: 15px;
}

.iti__selected-flag:hover {
    background-color: #444;
}

.iti__selected-dial-code {
    color: #fff;
}

.input-wrp .iti input.textfield {
    padding-left: 90px;
}

/* Checkbox Area */
.products-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 10px 45px;
}

.checkbox-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;width: 0;
}

.checkbox-wrapper label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    margin: 0;
    padding-left: 35px;
    position: relative;
}

.checkbox-wrapper label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: 2px solid #4A8B71;
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: #333;
}

.checkbox-wrapper label:after {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked + label:before {
    background-color: #4A8B71;
    border-color: #4A8B71;
}

.checkbox-wrapper input[type="checkbox"]:checked + label:after {
    opacity: 1;
}

.checkbox-wrapper:hover label:before {
    border-color: #4A8B71;
    box-shadow: 0 0 0 3px rgba(74, 139, 113, 0.1);
}

/* Submit Button Area */
.btn-wrp {
    padding: 0 45px;
}

.custom-btn.long {
    width: calc(100% - 90px);
    margin: 0 45px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .products-selection {
        grid-template-columns: 1fr;
        padding: 10px 15px;
    }
    
    .btn-wrp {
        padding: 0 15px;
    }
    
    .custom-btn.long {
        width: calc(100% - 30px);
        margin: 0 15px;
    }
}

/* iOS Form Input Fix */
@supports (-webkit-overflow-scrolling: touch) {
    input, select, textarea {
        font-size: 16px;
    }
}

/* Touch effects */
a, button {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Mobile Notch Support */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .products-selection {
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
    }
}


/* Checkbox Area */
.products-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 0;
    margin: 20px 0;
}

.checkbox-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-wrapper label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    margin: 0;
    padding-left: 35px;
    position: relative;
    width: 100%;
}

.checkbox-wrapper label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: 2px solid #4A8B71;
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: #333;
}


.input-wrp textarea.textfield {
    min-height: 120px !important;
    padding: 15px 45px !important;
}

.input-wrp i.fontello-comment {
    position: absolute !important;
    left: 15px !important;
    top: 15px !important;
    transform: none !important;
    color: #fff !important;
    font-size: 18px !important;
    z-index: 1 !important;
}

/* Message alanÄ± iÃ§in ek stil */
.input-wrp.message-wrp {
    position: relative !important;
}

.input-wrp.message-wrp i {
    opacity: 0.7 !important;
    transition: opacity 0.3s ease !important;
}

.input-wrp.message-wrp textarea:focus + i {
    opacity: 1 !important;
}

.message-wrp {
    position: relative !important;
    display: block !important;
    width: 100% !important;
}

.message-wrp .textfield {
    width: 100% !important;
    min-height: 120px !important;
    padding: 15px 45px !important;
    background-color: #333 !important;
    color: #fff !important;
    border: 1px solid #555 !important;
    border-radius: 4px !important;
    resize: vertical !important;
}

.message-wrp i.fontello-comment {
    position: absolute !important;
    left: 15px !important;
    top: 15px !important;
    color: #fff !important;
    opacity: 0.7 !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.message-wrp .textfield:focus {
    border-color: #4A8B71 !important;
    box-shadow: 0 0 0 2px rgba(74, 139, 113, 0.2) !important;
}

.message-wrp .textfield:focus + i {
    opacity: 1 !important;
}

    /* JustValidate varsayÄ±lan hata mesajÄ± stili */
    .just-validate-error-label {
      color: #ff0000;
      margin-top: 5px;
      font-size: 0.9em;
    }
    /* UyarÄ± mesajlarÄ± */
    .alert {
      padding: 10px;
      margin-top: 10px;
      border-radius: 4px;
      display: none; /* BaÅŸta gizli */
    }
    .alert-success {
      background-color: #d4edda;
      color: #155724;
    }
    .alert-error {
      background-color: #f8d7da;
      color: #721c24;
    }
</pre></body></html>