/* Contact Page Hero */
.page-hero-contact {
    padding: 140px 40px 80px;
    background: linear-gradient(135deg, var(--global-palette1) 0%, var(--global-palette2) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.page-hero-contact .page-hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-hero-contact .breadcrumbs {
    color: rgba(255, 255, 255, 0.8);
}

.page-hero-contact .breadcrumbs a {
    color: var(--global-palette3);
}

.page-hero-contact .breadcrumbs span {
    color: rgba(255, 255, 255, 0.8);
}

.page-hero-contact h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.page-hero-contact .hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 750px;
    margin: 0 auto 40px;
}

.contact-hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
}

.feature-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: #ff914d;
    color: #ff914d;
    transition: all 0.3s ease;
}

.hero-feature-item:hover .feature-icon svg {
    stroke: var(--global-palette1);
    color: var(--global-palette1);
    transform: scale(1.1);
}

/* Contact Main Section */
.contact-main-section {
    padding: 80px 40px 100px;
    background: #ffffff;
}

.contact-main-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-intro h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--global-palette1);
    margin-bottom: 20px;
}

.contact-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form Area */
.contact-form-area {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-area .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-area .form-row,
.contact-form-area .form-row-half {
    display: flex;
    gap: 20px;
}

.contact-form-area .form-row {
    flex-direction: column;
}

.contact-form-area .form-row-half {
    flex-direction: row;
}

.contact-form-area .form-row-half label {
    flex: 1;
}

.contact-form-area label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 600;
    color: var(--global-palette1);
    margin-bottom: 0;
}

.contact-form-area input[type="text"],
.contact-form-area input[type="email"],
.contact-form-area input[type="tel"],
.contact-form-area select,
.contact-form-area textarea {
    margin-top: 8px;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
}

.contact-form-area input:focus,
.contact-form-area select:focus,
.contact-form-area textarea:focus {
    outline: none;
    border-color: var(--global-palette3);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.contact-form-area textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form-area .checkbox-row {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.contact-form-area .checkbox-row label {
    flex-direction: row;
    font-weight: 400;
    font-size: 13px;
    color: #64748b;
}

.contact-form-area .btn-submit {
    padding: 16px 40px;
    background: var(--global-palette3);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.contact-form-area .btn-submit:hover {
    background: #b8964e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
}

/* Contact Details Sidebar */
.contact-details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--global-palette3);
    transform: translateY(-3px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: #ff914d;
    color: #ff914d;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon svg {
    stroke: var(--global-palette1);
    color: var(--global-palette1);
    transform: scale(1.1);
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--global-palette1);
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-card a {
    color: var(--global-palette1);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-card a:hover {
    color: var(--global-palette3);
}

.contact-note {
    display: block;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

.social-card {
    background: linear-gradient(135deg, var(--global-palette1) 0%, var(--global-palette2) 100%);
    color: #ffffff;
}

.social-card h3 {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff914d;
    transform: translateY(-3px);
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Contact Info Section */
.contact-info-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-info-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.info-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--global-palette1);
    margin-bottom: 20px;
}

.info-content > p {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 40px;
}

.info-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--global-palette3);
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--global-palette1);
    margin-bottom: 6px;
}

.benefit-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.visual-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.visual-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--global-palette1);
    margin-bottom: 30px;
    text-align: center;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: process-counter;
}

.process-list li {
    counter-increment: process-counter;
    position: relative;
    padding: 20px 0 20px 60px;
    border-left: 2px solid #e2e8f0;
    margin-bottom: 20px;
}

.process-list li:last-child {
    border-left: none;
    margin-bottom: 0;
}

.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: -18px;
    top: 18px;
    width: 36px;
    height: 36px;
    background: var(--global-palette3);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.process-list strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--global-palette1);
    margin-bottom: 6px;
}

.process-list span {
    display: block;
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-info-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .page-hero-contact {
        padding: 120px 20px 60px;
    }
    
    .contact-hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-main-section {
        padding: 60px 20px;
    }
    
    .contact-form-area {
        padding: 30px 20px;
    }
    
    .contact-form-area .form-row-half {
        flex-direction: column;
    }
    
    .contact-info-section {
        padding: 60px 20px;
    }
}