/* ==========================================
   İLETİŞİM & TEKLİF AL SAYFASI CSS
   Milano - Premium Furniture
   Author: Altunsoft Inc. - Mahsun Altun
   ========================================== */

/* SHARED CONTAINERS */
.container-quote,
.container-contact {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6%;
}

/* ==========================================
   HERO SECTIONS (Both Pages)
   ========================================== */

.quote-hero,
.contact-hero {
    height: 65vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: calc(var(--top-bar-h) + var(--header-h));
}

.quote-hero-bg,
.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.quote-hero-bg img,
.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.quote-hero-overlay,
.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 10, 9, 0.85) 0%, rgba(13, 10, 9, 0.65) 100%);
    z-index: 2;
}

.quote-hero-content,
.contact-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 5%;
}

.quote-breadcrumb,
.contact-breadcrumb {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.quote-breadcrumb a,
.contact-breadcrumb a {
    color: var(--gold-light);
    text-decoration: none;
    transition: 0.3s;
}

.quote-breadcrumb a:hover,
.contact-breadcrumb a:hover {
    color: var(--gold);
}

.quote-breadcrumb span,
.contact-breadcrumb span {
    margin: 0 10px;
}

.quote-title-main,
.contact-title-main {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--gold-light);
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.quote-title-sub,
.contact-title-sub {
    display: block;
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text);
    letter-spacing: 1px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
}

/* ==========================================
   QUOTE PAGE SPECIFIC
   ========================================== */

/* Quote Intro */
.quote-intro-section {
    padding: 80px 0;
    background: var(--bg);
}

.quote-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.quote-intro-icon {
    color: var(--gold-light);
    margin-bottom: 30px;
}

.quote-intro-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.quote-intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dim);
}

/* Quote Form Section */
.quote-form-section {
    padding: 80px 0 120px;
    background: #050403;
}

.quote-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.quote-form-container {
    background: var(--bg);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 10px;
    padding: 50px;
    opacity: 0;
    transform: translateY(30px);
}

.form-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.form-header p {
    font-size: 1rem;
    color: var(--text-dim);
}

/* Form Sections */
.form-section {
    margin-bottom: 40px;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.form-section-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 5px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: var(--font-sans);
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkboxes */
.form-checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    transition: 0.3s;
}

.form-checkbox:hover {
    border-color: var(--gold);
    background: rgba(184, 134, 11, 0.05);
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--gold);
}

.checkbox-label {
    font-size: 0.9rem;
    color: var(--text);
}

.checkbox-label a {
    color: var(--gold-light);
    text-decoration: underline;
}

.consent-checkbox {
    padding: 15px;
    border: 1px solid rgba(184, 134, 11, 0.3);
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(184, 134, 11, 0.3);
    border-radius: 5px;
    color: var(--text-dim);
    cursor: pointer;
    transition: 0.3s;
}

.file-upload-label:hover {
    border-color: var(--gold);
    background: rgba(184, 134, 11, 0.05);
}

.file-upload-label svg {
    color: var(--gold-light);
}

.file-names {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Submit Buttons */
.form-submit-wrapper {
    margin-top: 40px;
}

.btn-submit-quote,
.btn-submit-contact {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--gold);
    border: none;
    color: white;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s;
    border-radius: 5px;
    font-family: var(--font-sans);
}

.btn-submit-quote:hover,
.btn-submit-contact:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.btn-submit-quote svg,
.btn-submit-contact svg {
    transition: 0.4s;
}

.btn-submit-quote:hover svg,
.btn-submit-contact:hover svg {
    transform: translateX(5px);
}

/* Success Message */
.form-success-message {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    color: #4caf50;
    margin-bottom: 25px;
}

.form-success-message h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 15px;
}

.form-success-message p {
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* Info Sidebar */
.quote-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.info-card {
    padding: 35px;
    background: var(--bg);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 10px;
    transition: 0.4s;
}

.info-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.info-card-icon {
    color: var(--gold-light);
    margin-bottom: 20px;
}

.info-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 10px 0 10px 25px;
    color: var(--text-dim);
    font-size: 0.95rem;
    position: relative;
}

.info-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 5px;
    transition: 0.3s;
}

.process-step:hover {
    background: rgba(184, 134, 11, 0.05);
}

.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    color: var(--text);
    font-size: 0.9rem;
}

/* Contact Info List */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1.1rem;
    color: var(--gold-light);
    text-decoration: none;
    transition: 0.3s;
}

.contact-value:hover {
    color: var(--gold);
}

/* Testimonial */
.testimonial-card {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.05) 0%, rgba(13, 10, 9, 1) 100%);
}

.testimonial-quote {
    color: rgba(184, 134, 11, 0.2);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    display: block;
    font-size: 1rem;
    color: var(--gold-light);
    font-weight: 600;
}

.author-location {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--bg);
    opacity: 0;
    transform: translateY(30px);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
}

.trust-icon {
    color: var(--gold-light);
    margin-bottom: 20px;
}

.trust-item h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* ==========================================
   CONTACT PAGE SPECIFIC
   ========================================== */

/* Contact Cards */
.contact-cards-section {
    padding: 80px 0;
    background: var(--bg);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-card {
    padding: 40px 30px;
    background: #050403;
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 10px;
    text-align: center;
    transition: 0.5s;
    opacity: 0;
    transform: translateY(30px);
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.2);
}

.contact-card-icon {
    color: var(--gold-light);
    margin-bottom: 25px;
}

.contact-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 5px;
}

.contact-link {
    display: block;
    font-size: 1.1rem;
    color: var(--gold-light);
    text-decoration: none;
    margin: 10px 0;
    transition: 0.3s;
}

.contact-link:hover {
    color: var(--gold);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}

.card-link:hover {
    gap: 12px;
}

/* Contact Main Section */
.contact-main-section {
    padding: 80px 0;
    background: #050403;
}

.contact-main-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-container {
    background: var(--bg);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 10px;
    padding: 50px;
    opacity: 0;
    transform: translateY(30px);
}

.contact-form-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-header h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.contact-form-header p {
    font-size: 1rem;
    color: var(--text-dim);
}

/* Map */
.contact-map-container {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.map-wrapper {
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(184, 134, 11, 0.2);
}

.map-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    padding: 25px 30px;
    background: rgba(13, 10, 9, 0.95);
    border: 1px solid var(--gold);
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

.map-info h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.map-info p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Showrooms */
.showrooms-section {
    padding: 100px 0;
    background: var(--bg);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
}

.section-header-center h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 15px;
}

.section-header-center p {
    font-size: 1.1rem;
    color: var(--text-dim);
}

.showrooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.showroom-card {
    background: #050403;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.5s;
    opacity: 0;
    transform: translateY(30px);
}

.showroom-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.showroom-image {
    height: 250px;
    overflow: hidden;
}

.showroom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.showroom-card:hover .showroom-image img {
    transform: scale(1.1);
}

.showroom-content {
    padding: 30px;
}

.showroom-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.showroom-info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.showroom-info-item svg {
    color: var(--gold-light);
    flex-shrink: 0;
}

.showroom-info-item a {
    color: var(--gold-light);
    text-decoration: none;
    transition: 0.3s;
}

.showroom-info-item a:hover {
    color: var(--gold);
}

.showroom-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}

.showroom-link:hover {
    gap: 12px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #050403;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: var(--bg);
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover {
    background: rgba(184, 134, 11, 0.05);
}

.faq-item.active .faq-question {
    background: rgba(184, 134, 11, 0.1);
}

.faq-question h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--gold-light);
    margin: 0;
}

.faq-toggle {
    color: var(--gold);
    transition: 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 25px 30px;
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .quote-hero,
    .contact-hero {
        height: 55vh;
        margin-top: calc(var(--top-bar-h) + 80px);
    }

    .quote-form-wrapper,
    .contact-main-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showrooms-grid {
        grid-template-columns: 1fr;
    }

    .form-checkbox-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-form-container,
    .contact-form-container {
        padding: 30px;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        height: 400px;
    }

    .map-info {
        position: static;
        margin-top: 20px;
        border-radius: 5px;
    }
}

/* REVEAL ANIMATIONS */
[data-reveal] {
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* CONTACT CARDS - GENİŞLETİLDİ */
.contact-cards-section {
    padding: 80px 0;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-card {
    background: #1a1a1a;
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-light);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.2);
}

.contact-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 8px 0;
}

/* SELECT DÜZELTMESİ - SİYAH ARKA PLAN */
#contact-subject {
    background-color: #0d0a09 !important;
    color: #fff !important;
    border: 1px solid rgba(184, 134, 11, 0.3);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23b8860b' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

#contact-subject:hover,
#contact-subject:focus {
    border-color: var(--gold-light);
    outline: none;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

#contact-subject option {
    background-color: #0d0a09;
    color: #fff;
    padding: 10px;
}

#contact-subject option:hover,
#contact-subject option:checked {
    background-color: #1a1a1a;
    color: var(--gold-light);
}

/* FORM GENİŞLİĞİ */
.contact-main-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-main-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        min-height: auto;
        padding: 30px 20px;
    }
}
/* ÇALIŞMA SAATLERİ SECTION (SLOGAN GİBİ) */
.working-hours-section {
    padding: 80px 0;
    background: var(--bg);
    text-align: center;
}

.working-hours-content {
    max-width: 800px;
    margin: 0 auto;
}

.working-hours-icon {
    color: var(--gold-light);
    margin-bottom: 30px;
}

.working-hours-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 30px;
}

.working-hours-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text);
}