/* Contact Page - Clean Professional Layout */

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.6) 100%),
                url('https://res.cloudinary.com/dfpg7wqyu/image/upload/w_1400,h_800,c_fill,f_webp,q_85/v1756732120/3_svai68.webp') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    background-attachment: fixed;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 60px 80px;
    width: 100%;
    position: relative;
    z-index: 5;
}


/* Breadcrumb - Streamlined */
.service-breadcrumb {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 32px;
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
}

.service-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-breadcrumb a:hover {
    color: #E3B55C;
}

.service-breadcrumb .sep {
    color: rgba(255,255,255,0.6);
    margin: 0 4px;
}

.service-breadcrumb a {
    color: rgba(255,255,255,.95);
    text-decoration: none;
    transition: color .2s ease;
    font-weight: 500;
}

.service-breadcrumb a:hover {
    color: #E3B55C;
}

.service-breadcrumb .sep {
    color: rgba(255,255,255,.7);
    margin: 0 6px;
}

/* Hero Content Layout - Brand Consistent */
.contact-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 540px;
    gap: 100px;
    align-items: center;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.hero-left {
    position: relative;
    z-index: 5;
    max-width: 650px;
}

/* Contact Form Card - Professional & Clean */
.hero-right {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15),
                0 10px 30px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.hero-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E3B55C 0%, #d4a347 50%, #E3B55C 100%);
    opacity: 0.8;
}

.hero-right:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2),
                0 15px 40px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Hero Title - Brand Consistent */
.contact-hero .hero-title {
    font-family: 'Archivo', sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 800px;
    word-spacing: normal;
}

/* Hero Subtitle - Brand Consistent */
.contact-hero .hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 95%;
}

/* Form Header - Brand Consistent */
.form-header {
    margin-bottom: 44px;
    text-align: left;
    position: relative;
}

.form-section-tag {
    font-size: 11px;
    font-weight: 700;
    color: #E3B55C;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}


.form-header h2 {
    color: #1a1a1a;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 14px;
    font-family: 'Archivo', sans-serif;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.form-header p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.input-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.input-field label {
    font-size: 13px;
    font-weight: 600;
    color: #2a2a2a;
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 2px;
}

.input-field input,
.input-field select,
.input-field textarea {
    padding: 18px 22px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Archivo', sans-serif;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    resize: vertical;
    font-weight: 400;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04),
                inset 0 1px 2px rgba(0, 0, 0, 0.02);
    position: relative;
}

.input-field input:focus,
.input-field select:focus,
.input-field textarea:focus {
    outline: none;
    border-color: #E3B55C;
    box-shadow: 0 0 0 4px rgba(227, 181, 92, 0.15),
                0 4px 12px rgba(227, 181, 92, 0.08),
                inset 0 1px 2px rgba(0, 0, 0, 0.02);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.99);
}

.input-field textarea {
    min-height: 110px;
    line-height: 1.6;
    resize: vertical;
}

.submit-button {
    background: linear-gradient(135deg, #E3B55C 0%, #d4a347 100%);
    color: #1a1a1a;
    padding: 20px 40px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Archivo', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 16px;
    width: 100%;
    box-shadow: 0 6px 20px rgba(227, 181, 92, 0.4),
                0 2px 8px rgba(227, 181, 92, 0.2);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    background: linear-gradient(135deg, #d4a347 0%, #c19237 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 181, 92, 0.5),
                0 4px 12px rgba(227, 181, 92, 0.3);
}

/* Contact Info Section */
.contact-info {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

/* Contact Info Header - Brand Consistent */
.contact-info-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.contact-info-header::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #E3B55C, rgba(227, 181, 92, 0.3));
    border-radius: 1px;
}

.section-tag {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.contact-info-title {
    font-family: 'Archivo', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-info-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    max-width: none;
    margin: 0;
    padding: 0;
    align-items: start;
    grid-auto-rows: 1fr;
}

.contact-card {
    background: white;
    padding: 52px 44px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    min-height: 200px;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(227, 181, 92, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(227, 181, 92, 0.12) 0%, rgba(227, 181, 92, 0.08) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E3B55C;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(227, 181, 92, 0.1);
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

.contact-card:hover .card-icon {
    background: linear-gradient(135deg, rgba(227, 181, 92, 0.18) 0%, rgba(227, 181, 92, 0.12) 100%);
    transform: scale(1.05);
    border-color: rgba(227, 181, 92, 0.2);
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 120px;
    max-width: 100%;
}

.card-content h3 {
    font-size: 19px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-family: 'Archivo', sans-serif;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.card-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.1px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.card-content p a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-content p a:hover {
    color: #E3B55C;
    text-decoration: none;
}

@media (max-width: 768px) {
    .card-content p a:active {
        color: #d4a347;
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .contact-hero .hero-content {
        gap: 100px;
    }

    .hero-right {
        padding: 50px;
    }
}

@media (max-width: 1100px) {
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
        grid-auto-rows: auto;
        max-width: none;
    }

    .contact-card {
        padding: 40px 36px;
        min-height: 160px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        height: auto;
    }
}

@media (max-width: 1200px) {
    .contact-hero .hero-container {
        padding: 100px 40px 60px;
    }

    .contact-hero .hero-content {
        gap: 80px;
        grid-template-columns: 1fr 480px;
    }

    .hero-right {
        padding: 45px;
    }

    .hero-right::before {
        height: 2px;
    }

    .contact-cards {
        gap: 60px;
        padding: 0;
        max-width: none;
    }

    .contact-card {
        padding: 46px 38px;
        min-height: 180px;
    }
}

@media (max-width: 1024px) {
    .contact-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-right {
        max-width: 500px;
        margin: 0 auto;
    }


    .contact-hero .hero-title {
        font-size: 44px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .contact-hero .hero-container {
        padding: 80px 20px 50px;
    }

    .contact-hero .hero-content {
        gap: 50px;
    }

    .hero-right {
        padding: 40px 32px;
    }

    .form-header h2 {
        font-size: 30px;
    }

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

    .contact-hero .hero-title {
        font-size: 38px;
    }

    .contact-hero .hero-subtitle {
        font-size: 18px;
        max-width: 100%;
    }

    .form-header h2 {
        font-size: 28px;
    }

    .contact-info {
        padding: 80px 0;
    }

    .contact-info-header {
        margin-bottom: 50px;
    }

    .contact-info-title {
        font-size: 32px;
    }

    .contact-info-subtitle {
        font-size: 17px;
    }

    .contact-card {
        padding: 36px 32px;
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 28px;
        min-height: 140px;
        height: auto;
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
    }

    .card-content {
        text-align: left;
        align-items: flex-start;
    }

    .card-icon {
        width: 64px;
        height: 64px;
    }

    .card-icon svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .contact-hero .hero-container {
        padding: 60px 16px 40px;
    }

    .contact-info-header {
        margin-bottom: 40px;
        padding: 0 16px;
    }

    .contact-info-title {
        font-size: 28px;
    }

    .contact-info-subtitle {
        font-size: 16px;
    }

    .contact-hero .hero-content {
        gap: 40px;
    }

    .contact-hero .hero-title {
        font-size: 34px;
        line-height: 1.15;
    }

    .contact-hero .hero-subtitle {
        font-size: 17px;
    }

    .hero-right {
        padding: 32px 28px;
    }

    .form-header h2 {
        font-size: 28px;
    }

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

    .form-header h2 {
        font-size: 24px;
    }

    .submit-button {
        padding: 16px 32px;
        font-size: 13px;
    }

    .input-field input,
    .input-field select,
    .input-field textarea {
        padding: 14px 18px;
        font-size: 14px;
    }

    .contact-cards {
        padding: 0 20px;
        gap: 32px;
    }

    .contact-cards {
        padding: 0;
    }

    .contact-card {
        padding: 32px 28px;
        gap: 24px;
        flex-direction: row;
        text-align: left;
        align-items: center;
        height: auto;
        min-height: 130px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        justify-content: flex-start;
    }

    .card-content {
        text-align: left;
        align-items: flex-start;
    }

    .card-content h3,
    .card-content p {
        text-align: left;
    }

    .card-icon {
        width: 56px;
        height: 56px;
    }

    .card-icon svg {
        width: 24px;
        height: 24px;
    }

    .card-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .card-content p {
        font-size: 15px;
        line-height: 1.5;
    }
}