﻿
/* Gradient Header Section */
.contact-header {
    position: relative;
    padding: 120px 20px 180px;
    text-align: center;
    background: linear-gradient(135deg, #0047ab, #002b66);
    color: #fff;
    overflow: hidden;
}

    .contact-header .header-content {
        position: relative;
        z-index: 2;
    }

    .contact-header h1 {
        font-size: 48px;
        line-height: 1.3;
        font-weight: 700;
        margin-bottom: 20px;
        color: #ffffff;
    }

        .contact-header h1 span {
            color: #ffca28;
        }

    .contact-header p {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.9;
        color: #ffffff;
    }

    .contact-header .wave {
        position: absolute;
        bottom: -70px;
        left: 0;
        width: 100%;
    }

/* Contact Section */
.contact-section {
    padding: 80px 0 100px;
    background: #f3f4f6;
}

.contact-hero {
    text-align: center;
    margin-bottom: 56px;
}

.contact-title {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

    .contact-title .highlight {
        color: #0047ab;
    }

.contact-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Wrapper */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form Container */
.contact-form-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 15px;
}

.required {
    color: #dc2626;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: #ffffff;
    color: #1a1a1a;
    transition: all 0.2s ease;
}

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        outline: none;
        border-color: #1e3a5f;
        box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
        color: #9ca3af;
    }

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a1a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Privacy Notice */
.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f0fdf4;
    border-radius: 8px;
    border: 1px solid #d1fae5;
    margin-top: 12px;
}

.privacy-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.privacy-text {
    font-size: 13px;
    color: #047857;
    line-height: 1.5;
    margin: 0;
}

.privacy-link {
    color: #059669;
    font-weight: 600;
    text-decoration: underline;
}

    .privacy-link:hover {
        color: #047857;
    }

/* Form Buttons */
.form-buttons {
    display: flex;
    gap: 16px;
    margin-top: 15px;
    justify-content: center;
}

.btn {
    /*flex: 1;*/
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-send {
    background:  #152d47;
    color: #ffffff;
}

    .btn-send:hover {
        background: #152d47;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
    }

/*.btn-meeting {
    background: #f89f3d;
    color: #1a1a1a;
}

    .btn-meeting:hover {
        background: #e68a2e;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(248, 159, 61, 0.3);
    }
*/
.btn:active {
    transform: translateY(0);
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* Quick Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #f9fafb;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .contact-method:hover {
        background: #f3f4f6;
        transform: translateX(4px);
    }

.method-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .method-icon.bg-blue {
        background: #1e3a5f;
    }

    .method-icon.bg-red {
        background: #dc2626;
    }

    .method-icon.bg-green {
        background: #10b981;
    }

.method-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.method-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.method-value {
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 600;
}

/* Why Contact Us Card */
.card-blue {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    color: #ffffff;
}

    .card-blue .sidebar-title {
        color: #ffffff;
    }

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Fast Response Card */
.card-yellow {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    text-align: center;
}

.response-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.response-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.response-text {
    font-size: 14px;
    color: #78350f;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .contact-header h1 {
        font-size: 56px;
    }

    .contact-title {
        font-size: 48px;
    }

    .contact-subtitle {
        font-size: 18px;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr 380px;
        gap: 40px;
    }

    .contact-form-container {
        padding: 48px;
    }

    .sidebar-card {
        padding: 32px;
    }
}

@media (min-width: 1024px) {
    .contact-header h1 {
        font-size: 64px;
    }

    .contact-header p {
        font-size: 20px;
    }

    .contact-section {
        padding: 100px 0 120px;
    }

    .contact-hero {
        margin-bottom: 64px;
    }

    .contact-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .contact-header {
        padding: 80px 20px 140px;
    }

        .contact-header h1 {
            font-size: 36px;
        }

        .contact-header p {
            font-size: 16px;
        }

    .contact-section {
        padding: 60px 0 80px;
    }

    .contact-hero {
        margin-bottom: 40px;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-subtitle {
        font-size: 15px;
    }

    .contact-form-container {
        padding: 28px 20px;
    }

    .form-buttons {
        flex-direction: column;
    }

    .sidebar-card {
        padding: 24px 20px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .mobile-menu,
    .menu-toggle,
    .sidebar-card {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        box-shadow: none;
    }
}


/*contact card*/

 

        /* --- Layout Containers --- */
        .section-container {
            width: 100%;
            max-width: 1152px; /* Approx 6xl */
            padding: 4rem 1.5rem;
            margin: 0 auto;
        }

        /* --- Header Section --- */
        .header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .header h2 {
            font-size: 2.25rem; /* 36px */
            font-weight: 700;
            color: #111827;
            margin-bottom: 1rem;
        }

        .header h2 span {
            color: #1d4ed8; /* Brand Blue */
        }

        .header p {
            color: #6b7280;
            font-size: 1.125rem; /* 18px */
            max-width: 42rem;
            margin: 0 auto;
        }

        /* --- Grid Layout --- */
        .offices-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .offices-grid {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
        }

        /* --- Card Styles --- */
        .office-card {
            border-radius: 1rem;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            transition: box-shadow 0.3s ease;
        }

        .office-card:hover {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        /* Theme: United States (Blue) */
        .office-card.us {
            background-color: rgba(239, 246, 255, 0.8); /* bg-blue-50/80 */
        }
        .office-card.us .icon-box {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        }
        .office-card.us .detail-icon {
            color: #1d4ed8;
        }

        /* Theme: India (Green) */
        .office-card.india {
            background-color: rgba(236, 253, 245, 0.8); /* bg-emerald-50/80 */
        }
        .office-card.india .icon-box {
            background: linear-gradient(135deg, #10b981, #0f766e);
        }
        .office-card.india .detail-icon {
            color: #047857;
        }

        /* --- Card Header Content --- */
        .card-header {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            align-items: flex-start;
        }

        .icon-box {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .icon-box svg {
            width: 28px;
            height: 28px;
        }

        .card-title-group {
            padding-top: 0.25rem;
        }

        .card-title-group h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 0.25rem;
        }

        .card-title-group p {
            font-size: 0.875rem;
            color: #6b7280;
            font-weight: 500;
        }

        /* --- Details List --- */
        .card-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .detail-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .detail-icon {
            margin-top: 0.25rem;
            flex-shrink: 0;
        }

        .detail-icon svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
            fill-opacity: 0.1; /* Simulates the subtle fill effect */
        }

        .detail-text p.label {
            font-size: 0.875rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 0.125rem;
        }

        .detail-text .value, 
        .detail-text a {
            font-size: 0.875rem;
            color: #6b7280;
            display: block;
            text-decoration: none;
            line-height: 1.5;
        }

        .detail-text a:hover {
            text-decoration: underline;
        }

        /* Mobile adjustments */
        @media (max-width: 640px) {
            .header h2 {
                font-size: 1.875rem;
            }
            .section-container {
                padding: 3rem 1rem;
            }
        }

       /* validation*/
.error-message {
    color: red;
    font-size: 15px;
}