/* Contact Page Styles */

:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --cyan: #22d3ee;
    --orange: #f97316;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    position: relative;
    padding: 200px 0 120px;
    color: white;
    text-align: center;
    overflow: hidden;
    min-height: 450px;
}

.hero-image {
    position: absolute;
    inset: 0;
    background: url('../image/service/Clients-Who-Trust-Us-(Image2).jpg') center/cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(30, 41, 59, 0.92) 0%,
        rgba(51, 65, 85, 0.88) 50%,
        rgba(30, 41, 59, 0.92) 100%);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(34, 211, 238, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(59, 130, 246, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #60a5fa;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.hero-section h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 300;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.breadcrumb:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--cyan);
}

.breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.6;
}

.breadcrumb span {
    font-weight: 600;
    color: var(--cyan);
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.label-line {
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.label-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 30px;
}

/* Contact Info */
.contact-info {
    padding-right: 40px;
}

.business-hours {
    margin-bottom: 40px;
}

.hours-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: white;
    border-radius: 15px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.hours-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.hours-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.hours-content {
    display: flex;
    flex-direction: column;
}

.hours-day {
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
}

.hours-time {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Address Card */
.address-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 2px solid #e5e7eb;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.address-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.1);
}

.address-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary);
}

.address-header i {
    font-size: 1.5rem;
    color: var(--primary);
}

.address-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.address-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.address-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.address-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.address-item span,
.address-item a {
    color: var(--dark);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.address-item a:hover {
    color: var(--primary);
}

/* Social Links */
.social-links h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.linkedin {
    background: #0a66c2;
}

.social-icon.youtube {
    background: #ff0000;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 1rem;
    transition: color 0.3s;
}

.input-wrapper.textarea-wrapper i {
    top: 20px;
    transform: none;
}

.input-wrapper .form-control {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.input-wrapper .form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.input-wrapper .form-control:focus + i,
.input-wrapper:focus-within i {
    color: var(--primary);
}

.input-wrapper textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Alert */
.alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 1px solid #6ee7b7;
    color: #065f46;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
}

/* ===========================
   MAP SECTION
   =========================== */
.map-section {
    background: var(--dark);
}

.map-wrapper {
    position: relative;
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 992px) {
    .hero-section {
        padding: 160px 0 100px;
    }

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

    .contact-info {
        padding-right: 0;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 140px 0 80px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .address-card {
        padding: 25px 20px;
    }

    .address-header {
        flex-direction: column;
        text-align: center;
    }

    .address-item {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 120px 0 60px;
    }

    .hours-item {
        flex-direction: column;
        text-align: center;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}
