/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0; 
    padding: 0; 
    width: 100%; 
    height: 100%; 
    overflow-x: hidden; 
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(110deg, #f9f9fb 33%, #eef0f7 33%, #dde0ef 66%, #eef0f7 66%);
    background-size: cover; 
    background-attachment: fixed; 
    height: auto;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 250px;
    height: 120px;
}


.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    margin-right: 30px;
}
.logo img {
    width: auto;
    height: 60px;
    transition: transform 0.3s;
    transform: scale(1.1);
    transform-origin: center;
    margin-top: 10px;
}
@media screen and (max-width: 576px) {
    .logo img {
        height: 20px;
    }
    
}
.active {
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links li a {
    color: #000;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s, background-color 0.3s;
}

.nav-links li a:hover {
    border-bottom: 4px solid #FF0000;
    border-radius: 5px;
}

.dropdown {
    position: relative;
}

.dropdown a {
    display: flex;
    align-items: center;
}

.dropdown i {
    margin-left: 5px;
    transition: transform 0.3s;
    font-size: 12px;
}

.dropdown:hover i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    list-style: none;
    padding: 10px 0;
    width: 180px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    color: #000;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s, padding 0.3s;
    align-items: center;
}

.dropdown-menu li a:hover {
    padding-left: 30px;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-left: 70px;
}

.social-icons a {
    color: #000;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #00796B;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: rgb(189, 42, 42);
    margin-bottom: 4px;
    border-radius: 5px;
}

@media (max-width: 1200px) {
    .navbar {
        padding: 0 200px;
        height: 100px;
    }

    .nav-links li a {
        font-size: 18px;
    }

    .social-icons a {
        font-size: 22px;
    }
    .logo img {
        height: 60px;
    }
}

@media (max-width: 1050px) {
    .navbar {
        padding: 0 50px;
        height: 80px;
    }

    .nav-links li a {
        font-size: 18px;
    }

    .social-icons a {
        font-size: 20px;
    }
}


@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        text-align: center;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        font-size: 20px;
    }

    .icons-wrapper {
        display: flex;
        align-items: center;
    }

    .social-icons {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-right: 15px; 
    }
    .social-icons a {
        font-size: 26px;
    }

    .hamburger {
        display: block;
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 35px;
    }
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        height: 50px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        text-align: center;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        font-weight: normal; 
    }

    .nav-links li.active {
        font-weight: bold; 
    }

    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown a {
        width: 100%;
        display: inline-block;
    }

    .dropdown-menu {
        display: none;
        position: relative;
        background-color: #fff;
        list-style: none;
        padding: 10px 0;
        width: 100%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        border-radius: 8px;
        z-index: 1000;
        margin-top: 10px;
    }

    .dropdown-menu.active {
        display: block;
    }

    .social-icons {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
}
/* Max Width 350px */
@media (max-width: 380px) {
    .navbar {
        padding: 0 10px;
        height: 50px;
    }

    .hamburger {
        width: 30px; 
        height: 30px;
    }

    .hamburger span {
        width: 20px; 
        height: 2px;
    }

    .nav-links {
        top: 50px; 
    }

    .nav-links li {
        font-size: 16px; 
    }

    .social-icons {
        margin-left: 5px; 
    }

    .social-icons a {
        font-size: 20px; 
    }
}
@media (max-width: 1200px) {
    .title {
        font-size: 40px;
    }

    .content p {
        font-size: 24px;
    }

    .button {
        padding: 8px 25px;
        font-size: 22px;
    }
}
@media (max-width: 992px) {
    .container {
        width: 90%;
    }

    .title {
        font-size: 36px;
    }

    .content p {
        font-size: 22px;
    }

    .button {
        padding: 8px 20px;
        font-size: 20px;
    }
}


@media (max-width: 767px) {
    .title {
        font-size: 32px;
    }

    .content p {
        font-size: 20px;
    }

    .button {
        padding: 7px 18px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .title {
        font-size: 28px;
    }

    .content p {
        font-size: 18px;
    }

    .button {
        padding: 6px 16px;
        font-size: 16px;
    }
}
.fixed-call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    background-color: #4CAF50; 
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}
.fixed-call-button a {
    color: #fff;
    text-decoration: none;
}

.fixed-call-button i, .fixed-call-button span {
    margin-right: 10px;
    font-size: 14px;
}

.fixed-call-button:hover {
    background-color: #218838;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.fixed-call-button.visible {
    opacity: 1; 
    visibility: visible; 
}

@media (max-width: 576px) {
    .fixed-call-button {
        padding: 10px;
        font-size: 14px;
    }
    
    .fixed-call-button i {
        font-size: 20px; 
    }
    
    .fixed-call-button span {
        display: none; 
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    .fixed-call-button {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .fixed-call-button i {
        font-size: 13px; 
    }
    
    .fixed-call-button span {
        display: inline; 
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .fixed-call-button {
        padding: 10px 20px;
        font-size: 15px;
    }
    
    .fixed-call-button i {
        font-size: 15px; 
    }
    
    .fixed-call-button span {
        display: inline; 
    }
}
@media (min-width: 992px) {
    .fixed-call-button {
        padding: 10px 20px;
        font-size: 16px;
    }
    
    .fixed-call-button i {
        font-size: 18px; 
    }
    
    .fixed-call-button span {
        display: inline; 
    }
}


/* harita start */

.harita-section {
    padding: 50px 20px;
    text-align: center;
}

.harita-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.harita-container {
    max-width: 90%;
    margin: auto;
    position: relative;
    overflow: hidden;
    padding-top: 15%; 
    border-radius: 8px;
    height: 500px;
}

.harita-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}


/* harita end */


/* footer start */

.custom-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0;
    text-align: center;
}

.custom-footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.custom-footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.custom-footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
}

.custom-footer-column a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.custom-footer-column a:hover {
    color: #3498db;
}

.custom-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-iletisim-info li,
.custom-services-list li {
    margin-bottom: 10px;
    font-size: 16px;
}

.custom-iletisim-info li i,
.custom-footer-social li i {
    margin-right: 10px;
}

.custom-services-list li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.custom-services-list li a:hover {
    color: #3498db;
}

.custom-footer-social ul {
    padding: 0;
    margin: 0;
}

.custom-footer-social li {
    display: block;
    margin-bottom: 10px;
}

.custom-footer-social li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.custom-footer-social li a:hover {
    color: #3498db;
}

.custom-footer-bottom {
    margin-top: 30px;
    font-size: 14px;
    border-top: 1px solid #34495e;
    padding-top: 15px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .custom-footer-container {
        flex-direction: column;
        text-align: left;
    }

    .custom-footer-column {
        margin-bottom: 30px;
    }

    .custom-footer-bottom {
        text-align: center;
    }
}

/* footer end */

.fix-call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 15px 20px;
    text-align: center;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fix-call-button.show {
    opacity: 1;
    visibility: visible;
}

.fix-call-button i {
    margin-right: 8px;
}

@media (max-width: 576px) {
    .fix-call-button {
        padding: 15px;
        font-size: 0; 
    }

    .fix-call-button i {
        margin-right: 0;
        font-size: 24px; 
    }
}