:root {
    --contact-bg: #ffffff;
    --contact-text: #111111;
    --contact-muted: #666666;
    --contact-input-bg: #f9f9f9;
    --contact-border: rgba(0, 0, 0, 0.08);
    --contact-accent: #0fff00;
}

.contact-page {
    background-color: var(--contact-bg);
    color: var(--contact-text);
    padding-top: 150px;
    min-height: 100vh;
    overflow-x: hidden;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: start;
}

/* Header Section */
.contact-header {
    margin-bottom: 60px;
}

.contact-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--contact-muted);
    margin-bottom: 20px;
}

.contact-hero-title {
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -4px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: var(--contact-text);
}

.contact-hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--contact-muted);
    max-width: 500px;
}

/* Form Section */
.contact-form-wrapper {
    background: #fff;
    padding: 0;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    background: var(--contact-input-bg);
    border: 1px solid var(--contact-border);
    padding: 22px 30px;
    border-radius: 16px;
    font-family: inherit;
    font-size: 16px;
    color: var(--contact-text);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-input:focus {
    outline: none;
    background: #fff;
    border-color: var(--contact-text);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

textarea.form-input {
    min-height: 180px;
    resize: none;
}

.contact-policy {
    font-size: 13px;
    color: var(--contact-muted);
    line-height: 1.5;
}

.contact-policy a {
    color: var(--contact-text);
    text-decoration: underline;
}

.btn-submit {
    background: #000;
    color: #fff;
    border: none;
    padding: 22px 50px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-submit:hover {
    background: var(--contact-accent);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 255, 0, 0.3);
}

/* Side Info */
.contact-side {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.book-call-text {
    font-size: 18px;
    color: var(--contact-muted);
}

.book-call-text a {
    color: #ff3b30; /* Referanstaki kÄ±rmÄ±zÄ±msÄ± vurgu */
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.book-call-text a:hover {
    border-bottom-color: #ff3b30;
}

.visit-section h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-item .label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 15px;
    display: block;
}

.info-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--contact-text);
    font-weight: 500;
}

/* FAQ Section */
.faq-wrap {
    margin-top: 150px;
    padding-bottom: 150px;
    border-top: 1px solid var(--contact-border);
    padding-top: 100px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
}

.faq-header h2 {
    font-size: 80px;
    font-weight: 950;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -3px;
    margin-bottom: 20px;
}

.faq-header p {
    color: var(--contact-muted);
    font-size: 16px;
    margin-bottom: 20px;
}

.faq-header a {
    color: #ff3b30;
    font-weight: 700;
    text-decoration: none;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--contact-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item:hover {
    border-color: rgba(0,0,0,0.2);
}

.faq-question {
    width: 100%;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    color: var(--contact-text);
}

.faq-icon {
    font-size: 24px;
    color: var(--contact-muted);
    transition: transform 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    background: #fcfcfc;
}

.faq-answer-inner {
    padding: 0 40px 30px 40px;
    color: var(--contact-muted);
    line-height: 1.7;
    font-size: 16px;
}

.faq-item.active {
    border-color: #000;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #ff3b30;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .contact-grid, .faq-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-hero-title {
        font-size: 70px;
    }
    
    .faq-header h2 {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .form-row, .info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero-title {
        font-size: 50px;
    }
    
    .contact-page {
        padding-top: 120px;
    }
}
/* Map Wrapper */
.map-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--contact-border);
    background: var(--contact-input-bg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    height: 520px; /* Form ile benzer yükseklik */
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-wrapper:hover iframe {
    transform: scale(1.02);
}

/* Call Button */
.btn-call {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #000;
    color: #fff;
    padding: 24px 35px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: -40px; /* Book call text ile yakınlaştırmak için */
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.btn-call:hover {
    background: var(--contact-accent);
    color: #000;
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(15, 255, 0, 0.3);
}

.call-icon-wrap {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
}

.btn-call:hover .call-icon-wrap {
    background: rgba(0,0,0,0.1);
}

.call-content .call-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.call-content .call-num {
    display: block;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .map-wrapper {
        height: 350px;
    }
    .btn-call {
        margin-top: 0;
    }
}
