/*
Theme Name: HakDem Yapı
Theme URI: https://hakdemyapi.com
Author: HakDem
Author URI: https://hakdemyapi.com
Tags: kurumsal, inşaat, mühendislik, mimarlık, yapı firması, wordpress kurumsal tema, responsive, mobil uyumlu, seo uyumlu, hızlı tema
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #F0D274;
    --background-color: #151515;
    --white: #ffffff;
}

<meta name="google-site-verification" content="LgJPN3DPVByqtHKaNOJVW61vJF5ikFdcVqYTURWaX_g" />

body {
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--white);
}

.small-heading {
    color: var(--primary-color);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

/* Header Styles */
.site-header {
    background-color: transparent;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    transition: background-color 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(1px);
}

.site-header.menu-active {
    z-index: 1;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-logo {
    max-width: 100px;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    color: var(--white);
}

.contact-info span {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 400;
}

.contact-info .phone-number {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 16px;
}

.contact-button {
    background-color: transparent;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.contact-button:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.contact-button i {
    font-size: 16px;
}

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

.social-icons a {
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--white);
    opacity: 0.8;
}

.toggle-menu {
    display: flex;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 5px;
    margin-left: 20px;
    border: 1px solid var(--white);
    transition: all 0.3s ease;
}

.toggle-menu:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Primary Menu Styles */
.primary-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--background-color);
    display: flex;
    flex-direction: row;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.5s, opacity 0.5s ease;
}

.primary-menu.active {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.menu-content {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    position: relative;
    order: 2;
    background-color: var(--background-color);
    opacity: 1;
}

.primary-menu.active .menu-content {
    opacity: 1;
}

.menu-background {
    width: 50%;
    height: 100%;
    background-image: url('https://hakdemyapi.com/wp-content/uploads/2025/06/bbee5478-e6d4-4e6d-b01b-830104f04837.webp');
    background-size: cover;
    background-position: center;
    order: 1;
    transform: translateX(100%);
    transition: transform 0.5s ease;
}

.primary-menu.active .menu-background {
    transform: translateX(0);
}

.primary-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.primary-menu ul li {
    margin-bottom: 20px;
    opacity: 1 !important;
}

.primary-menu ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 36px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: block;
}

/* Aktif ve hover durumları için yeni stil */
.primary-menu ul li.current-menu-item a,
.primary-menu ul li a:hover {
    color: #ffffff !important;
}

/* Active menü durumunda */
.primary-menu.active ul li a {
    color: rgba(255, 255, 255, 0.5);
}

.primary-menu.active ul li.current-menu-item a,
.primary-menu.active ul li a:hover {
    color: #ffffff !important;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10000;
    transition: transform 0.3s ease;
}

.menu-close:hover {
    transform: rotate(90deg);
}

.menu-social {
    position: absolute;
    bottom: 50px;
    left: 5%;
    display: flex;
    gap: 20px;
}

.menu-social a {
    color: var(--white);
    font-size: 24px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.menu-social a:hover {
    opacity: 1;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Mobile Styles */
@media (max-width: 768px) {
    .header-right {
        display: flex;
        gap: 15px;
    }
    
    .header-right > *:not(.contact-info):not(.toggle-menu) {
        display: none;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-info span {
        font-size: 11px;
    }
    
    .contact-info .phone-number {
        font-size: 14px;
    }
    
    .toggle-menu {
        width: 35px;
        height: 35px;
        font-size: 18px;
        margin-left: 10px;
    }
    
    .primary-menu {
        flex-direction: row;
    }
    
    .menu-content {
        width: 70%;
        height: 100%;
        order: 1;
    }
    
    .menu-background {
        width: 30%;
        height: 100%;
        order: 2;
    }
    
    .primary-menu ul li a {
        font-size: 36px;
    }
    
    .menu-close {
        right: auto;
        left: 20px;
    }
    
    .menu-social {
        left: 20px;
    }
    
    .primary-menu ul li.current-menu-item a,
    .primary-menu.active ul li.current-menu-item a {
        color: #ffffff !important;
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 20px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(21, 21, 21, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content h1 {
    font-size: 4em;
    margin: 20px 0;
    line-height: 1.2;
}

.hero-content .small-heading {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Footer Styles */
.site-footer {
    background-color: var(--background-color);
    padding: 10px 0 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widgets-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.footer-widgets-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2fr;
    gap: 30px;
    width: 100%;
}

.footer-widget-col:last-child {
    padding-left: 20px;
}

.footer-widget-col:not(:last-child) {
    padding-right: 10px;
}

.footer-widget-col {
    color: var(--white);
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.footer-widget {
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
    overflow: hidden;
}

.footer-widget * {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
}

.footer-widget img,
.footer-widget iframe,
.footer-widget object,
.footer-widget embed {
    max-width: 100%;
    height: auto;
}

.footer-widget table {
    width: 100% !important;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.widget-title {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
    color: var(--primary-color);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Contact Widget Styles */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 16px;
    width: 16px;
    flex-shrink: 0;
}

.contact-item span,
.contact-item a,
.address-content {
    flex: 1;
    max-width: calc(100% - 26px);
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.address-title {
    color: var(--white);
    font-size: 14px;
    margin: 0 0 5px 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.address-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

.contact-link {
    color: var(--white) !important;
}

.contact-link:hover {
    opacity: 0.8;
}

.address-item {
    margin-bottom: 5px;
}

.address-content {
    flex: 1;
}

.address-title {
    color: var(--white);
    font-size: 16px;
    margin: 0 0 5px 0;
    font-weight: 500;
}

.address-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

/* Footer Responsive */
@media (max-width: 1440px) {
    .footer-widgets-container,
    .footer-bottom-container {
        max-width: 1200px;
    }
}

@media (max-width: 992px) {
    .footer-widgets-row {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-widget-col:last-child {
        grid-column: 1 / -1;
        padding-left: 0;
    }
    
    .footer-widget-col:not(:last-child) {
        padding-right: 0;
    }
    
    .footer-widgets-container,
    .footer-bottom-container {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .footer-widgets-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-widgets-container {
        padding: 0 15px;
        overflow: hidden;
        max-width: 100vw;
    }
    
    .footer-widget-col {
        padding: 0 !important;
        width: 100% !important;
        overflow: hidden;
    }
    
    .footer-widget {
        padding: 0;
        width: 100% !important;
        overflow: hidden;
    }
    
    .footer-widget * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .corporate-info-widget {
        padding: 0;
        margin: 0;
    }
    
    .corporate-logo {
        max-width: 120px;
        margin-bottom: 15px;
    }
    
    .corporate-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .corporate-description p {
        font-size: 14px;
        line-height: 1.5;
    }

    .contact-item {
        margin-bottom: 10px;
    }

    .contact-item i {
        font-size: 14px;
        width: 14px;
    }

    .address-title,
    .contact-item span,
    .contact-item a,
    .address-content p,
    .corporate-description p {
        font-size: 13px;
    }
}

/* Update all other text elements to use Poppins */
h1, h2, h3, h4, h5, h6,
.contact-info,
.contact-button,
.site-logo,
.footer-widget {
    font-family: 'Poppins', sans-serif;
}

/* Menü öğeleri için ID seçiciler */
li#menu-item-8,
li#menu-item-9,
li#menu-item-10,
li#menu-item-11,
li#menu-item-12 {
    opacity: 1 !important;
}

/* Modal Styles */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.contact-modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--background-color);
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--white);
    font-size: 14px;
}

.form-group input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 5px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.15);
}

.kvkk-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.kvkk-group input[type="checkbox"] {
    margin-top: 4px;
}

.kvkk-group label {
    color: var(--white);
    font-size: 12px;
    line-height: 1.4;
}

.kvkk-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* Modal için responsive ayarlar */
@media (max-width: 768px) {
    .modal-content {
        margin: 20px;
        padding: 30px;
    }
}

/* Elementor Full Width Template Styles */
.page-template-elementor-fullwidth {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.page-template-elementor-fullwidth .site-main {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.page-template-elementor-fullwidth .entry-content {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.page-template-elementor-fullwidth .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1200px;
    width: 100%;
}

.page-template-elementor-fullwidth .elementor {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.page-template-elementor-fullwidth .elementor-section-wrap {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

/* Corporate Widget Styles */
.corporate-info-widget {
    width: 100%;
}

.corporate-logo {
    margin-bottom: 20px;
    max-width: 150px;
}

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

.corporate-description {
    color: rgba(255, 255, 255, 0.7);
}

.corporate-description p {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

@media (max-width: 576px) {
    .contact-item {
        margin-bottom: 10px;
    }
    
    .contact-item i {
        font-size: 14px;
        width: 14px;
    }
    
    .address-title,
    .contact-item span,
    .contact-item a,
    .address-content p,
    .corporate-description p {
        font-size: 13px;
        max-width: calc(100% - 24px);
        white-space: pre-wrap;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Genel Site Taşma Kontrolü */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Footer ve Widget Mobil Düzenlemeleri */
@media (max-width: 576px) {
    .footer-widget-col {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
        overflow: hidden;
    }
    .footer-widget ul li a {
        font-size: 13px;
    }

    .footer-widget {
        width: 100%;
        overflow: hidden;
    }

    .footer-contact-info {
        width: 100%;
        padding: 0;
        overflow: hidden;
    }

    .contact-item {
        width: 100%;
        margin-bottom: 10px;
        overflow: hidden;
    }

    .contact-item i {
        font-size: 14px;
        width: 14px;
    }

    .contact-item span,
    .contact-item a,
    .address-content,
    .address-title,
    .address-content p,
    .corporate-description p {
        font-size: 13px;
        width: 95%;
        max-width: calc(100% - 24px);
        box-sizing: border-box;
        padding-right: 5px;
        display: block;
    }

    .corporate-description {
        width: 95%;
        box-sizing: border-box;
        padding-right: 5px;
    }

    .address-content {
        width: 95%;
        display: block;
    }
}


/* Contact Widget ve Corporate Widget için Metin Kontrolleri */
.contact-item span,
.contact-item a,
.address-content,
.corporate-description {
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    -ms-word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.address-title,
.contact-link,
.corporate-description p {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 576px) {
    .contact-item span,
    .contact-item a,
    .address-content p,
    .corporate-description p {
        font-size: 13px;
        line-height: 1.5;
        display: block;
        white-space: normal;
    }

    .address-title {
        font-size: 14px;
        margin-bottom: 3px;
    }

    .contact-item {
        margin-bottom: 10px;
    }

    .corporate-description {
        margin-bottom: 15px;
    }
}

/* Footer Navigation Menu Styles */
.footer-widget .widget_nav_menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-widget .widget_nav_menu li {
    position: relative;
    padding: 5px 0;
}

.footer-widget .widget_nav_menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget .widget_nav_menu a:hover,
.footer-widget .widget_nav_menu li.current-menu-item > a {
    color: var(--primary-color);
} 