/* ========================================
   MODERN CONTACT PAGE 2025
   Ultra Premium Design
   ======================================== */

:root {
    --primary-orange: #ff5e15;
    --primary-navy: #002052;
    --gradient-orange: linear-gradient(135deg, #ff5e15 0%, #ff8a4d 100%);
    --gradient-navy: linear-gradient(135deg, #002052 0%, #003875 100%);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 12px 48px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 80px rgba(0, 32, 82, 0.18);
    --shadow-orange: 0 12px 32px rgba(255, 94, 21, 0.35);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Section */
.modern-contact-hero {
    position: relative;
    padding: 160px 0 120px;
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    overflow: hidden;
}

.contact-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Modern Breadcrumb */
.modern-breadcrumb {
    margin-bottom: 32px;
}

.modern-breadcrumb .breadcrumb {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    border: 1px solid #e8eef5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin: 0;
    gap: 4px;
}

.modern-breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.modern-breadcrumb .breadcrumb-item a {
    color: #64748b;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modern-breadcrumb .breadcrumb-item a:hover {
    color: #ff5e15;
    background: rgba(255, 94, 21, 0.06);
}

.modern-breadcrumb .breadcrumb-item.active {
    color: #002052;
    font-weight: 700;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(0, 32, 82, 0.08) 0%, rgba(0, 32, 82, 0.04) 100%);
    border-radius: 8px;
}

.modern-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #cbd5e1;
    padding: 0 8px;
    font-size: 16px;
}

/* Hero Title */
.contact-hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.title-gradient {
    background: linear-gradient(135deg, #ff5e15 0%, #ff8a4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.title-navy {
    color: #002052;
    display: inline-block;
}

.contact-hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Background Decoration */
.hero-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 94, 21, 0.08) 0%, transparent 70%);
    top: -150px;
    right: -150px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 32, 82, 0.06) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(30px, 30px) scale(1.05); }
}

/* Contact Info Section */
.modern-contact-info {
    padding: 0 0 120px;
    background: #ffffff;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.info-card {
    background: #ffffff;
    padding: 52px 36px;
    border-radius: 28px;
    text-align: center;
    border: 2px solid #e8eef5;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-orange);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 94, 21, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover::before {
    transform: translateX(100%);
}

.info-card:hover::after {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-16px);
    border-color: rgba(255, 94, 21, 0.4);
    box-shadow: 0 24px 70px rgba(255, 94, 21, 0.25);
}

.info-icon {
    width: 96px;
    height: 96px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 40px;
    color: white;
    position: relative;
    transition: var(--transition);
    z-index: 1;
}

.info-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 30px;
    background: inherit;
    opacity: 0.2;
    filter: blur(12px);
    transition: var(--transition);
}

.info-card:hover .info-icon {
    transform: scale(1.15) rotate(8deg);
}

.info-card:hover .info-icon::before {
    opacity: 0.4;
    filter: blur(20px);
}

.info-icon.phone {
    background: linear-gradient(135deg, #ff5e15 0%, #ff8a4d 100%);
    box-shadow: 0 8px 24px rgba(255, 94, 21, 0.3);
}

.info-icon.email {
    background: linear-gradient(135deg, #002052 0%, #003875 100%);
    box-shadow: 0 8px 24px rgba(0, 32, 82, 0.3);
}

.info-icon.location {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.info-icon.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.info-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #002052;
    margin: 0 0 10px 0;
}

.info-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 20px 0;
}

.info-link {
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    color: #ff5e15;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.info-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff5e15;
    transition: width 0.3s ease;
}

.info-link:hover::after {
    width: 100%;
}

.info-link:hover {
    color: #002052;
}

.info-person {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 10px;
    font-weight: 500;
}

/* ========================================
   CONTACT SECTION 2025 - ULTRA MODERN
   ======================================== */

.contact-section-2025 {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-badge-2025 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(255, 94, 21, 0.1) 0%, rgba(255, 94, 21, 0.05) 100%);
    border: 2px solid rgba(255, 94, 21, 0.2);
    border-radius: 100px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.section-badge-2025:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 94, 21, 0.2);
}

.badge-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.badge-text {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-orange);
    letter-spacing: 1.5px;
}

.section-title-center {
    font-size: 52px;
    font-weight: 900;
    color: var(--primary-navy);
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-center {
    font-size: 20px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* Info Cards Modern */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card-modern {
    background: #ffffff;
    padding: 36px 32px;
    border-radius: 24px;
    border: 2px solid #e8eef5;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.info-card-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-orange);
    transition: height 0.4s ease;
}

.info-card-modern:hover::before {
    height: 100%;
}

.info-card-modern:hover {
    transform: translateX(8px);
    border-color: rgba(255, 94, 21, 0.3);
    box-shadow: 0 16px 48px rgba(255, 94, 21, 0.15);
}

.info-icon-box {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(255, 94, 21, 0.12) 0%, rgba(255, 94, 21, 0.06) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 32px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.info-card-modern:hover .info-icon-box {
    background: var(--gradient-orange);
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(255, 94, 21, 0.3);
}

.info-card-modern h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-navy);
    margin: 0 0 8px 0;
}

.info-card-modern p {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 16px 0;
}

.info-card-modern a,
.info-card-modern span:last-child {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition);
}

.info-card-modern a:hover {
    color: var(--primary-navy);
    transform: translateX(4px);
}

.info-card-modern.working-hours span:last-child {
    color: var(--primary-navy);
}

/* Contact Form Box */
.contact-form-box {
    background: #ffffff;
    padding: 56px;
    border-radius: 32px;
    box-shadow: var(--shadow-md);
    border: 2px solid #e8eef5;
    position: relative;
    overflow: hidden;
}

.contact-form-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 94, 21, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.form-header {
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.form-header h3 {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-navy);
    margin: 0 0 16px 0;
}

.form-header p {
    font-size: 17px;
    color: #64748b;
    margin: 0;
}

/* Modern Form Styles */
.modern-contact-form {
    position: relative;
    z-index: 1;
}

.form-group-modern {
    margin-bottom: 28px;
}

.form-group-modern label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.form-group-modern label i {
    color: var(--primary-orange);
    font-size: 16px;
}

.form-group-modern .optional {
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
}

.form-input-modern,
.form-textarea-modern {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e8eef5;
    border-radius: 16px;
    font-size: 16px;
    color: var(--primary-navy);
    background: #f8f9fb;
    transition: var(--transition);
    font-family: inherit;
}

.form-input-modern:focus,
.form-textarea-modern:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: #ffffff;
    box-shadow: 0 0 0 5px rgba(255, 94, 21, 0.1);
    transform: translateY(-2px);
}

.form-input-modern::placeholder,
.form-textarea-modern::placeholder {
    color: #94a3b8;
}

.form-textarea-modern {
    resize: vertical;
    min-height: 160px;
    line-height: 1.7;
}

.char-counter {
    text-align: right;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 8px;
    font-weight: 600;
}

.char-counter #charCount {
    color: var(--primary-orange);
    font-weight: 700;
}

/* Submit Button */
.submit-button-modern {
    width: 100%;
    padding: 22px 48px;
    background: var(--gradient-orange);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-orange);
    position: relative;
    overflow: hidden;
}

.submit-button-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-button-modern:hover::before {
    width: 400px;
    height: 400px;
}

.submit-button-modern span,
.submit-button-modern i {
    position: relative;
    z-index: 1;
}

.submit-button-modern:hover {
    gap: 20px;
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(255, 94, 21, 0.5);
}

.submit-button-modern:active {
    transform: translateY(-2px);
}

/* Trust Badges */
.trust-badges-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 2px solid #e8eef5;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
}

.trust-badge-item i {
    color: var(--primary-orange);
    font-size: 20px;
}

/* Bottom CTA */
.contact-bottom-cta {
    margin-top: 80px;
    padding: 48px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #003875 100%);
    border-radius: 32px;
    box-shadow: 0 24px 80px rgba(0, 32, 82, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-bottom-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 94, 21, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.cta-content > i {
    font-size: 56px;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.cta-text {
    flex: 1;
}

.cta-text h4 {
    font-size: 28px;
    font-weight: 900;
    color: white;
    margin: 0 0 8px 0;
}

.cta-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 40px;
    background: var(--gradient-orange);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 800;
    transition: var(--transition);
    box-shadow: 0 12px 32px rgba(255, 94, 21, 0.4);
    flex-shrink: 0;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(255, 94, 21, 0.6);
    color: white;
}

/* Background Decoration */
.contact-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.contact-bg-decoration .decoration-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 25s ease-in-out infinite;
}

.contact-bg-decoration .circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 94, 21, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.contact-bg-decoration .circle-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 32, 82, 0.06) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: -10s;
}

.contact-bg-decoration .circle-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 94, 21, 0.05) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
}

/* Contact Form Section */
.modern-contact-form {
    padding: 100px 0;
    background: #f8f9fb;
}

.contact-info-sidebar {
    background: linear-gradient(135deg, #002052 0%, #003875 100%);
    padding: 48px 36px;
    border-radius: 24px;
    color: white;
    height: 100%;
    box-shadow: 0 20px 60px rgba(0, 32, 82, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-info-sidebar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 94, 21, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sidebar-header {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.sidebar-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0 0 12px 0;
}

.sidebar-header p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-info-sidebar .contact-features {
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}

.contact-info-sidebar .feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-info-sidebar .feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
    border-color: rgba(255, 94, 21, 0.4);
}

.contact-info-sidebar .feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 94, 21, 0.2);
    border-radius: 14px;
    font-size: 24px;
    color: #ff5e15;
}

.contact-info-sidebar .feature-item:hover .feature-icon {
    background: #ff5e15;
    color: white;
    transform: scale(1.1);
}

.contact-info-sidebar .feature-text h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 6px;
}

.contact-info-sidebar .feature-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.quick-contact-box {
    position: relative;
    z-index: 1;
    background: rgba(255, 94, 21, 0.15);
    backdrop-filter: blur(10px);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 94, 21, 0.3);
    text-align: center;
}

.quick-contact-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
}

.quick-contact-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 20px 0;
}

.quick-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #ff5e15;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 94, 21, 0.4);
}

.quick-call-btn:hover {
    background: #ff8a4d;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 94, 21, 0.5);
    color: white;
}

.form-content {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8eef5;
}

.form-header {
    margin-bottom: 40px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 94, 21, 0.1);
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-badge i {
    color: #ff5e15;
    font-size: 16px;
}

.section-badge span {
    font-size: 13px;
    font-weight: 700;
    color: #ff5e15;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-title {
    font-size: 48px;
    font-weight: 800;
    color: #002052;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.form-description {
    font-size: 17px;
    line-height: 1.7;
    color: #64748b;
    margin: 0 0 40px 0;
}

/* Form Styles */
.contact-form-modern {
    margin-bottom: 32px;
}

.form-control-modern {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e8eef5;
    border-radius: 14px;
    font-size: 16px;
    color: #002052;
    background: #f8f9fb;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control-modern:focus {
    outline: none;
    border-color: #ff5e15;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 94, 21, 0.08);
    transform: translateY(-2px);
}

.form-control-modern::placeholder {
    color: #94a3b8;
}

textarea.form-control-modern {
    resize: vertical;
    min-height: 160px;
    line-height: 1.6;
}

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid #e8eef5;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.trust-badge i {
    color: #ff5e15;
    font-size: 18px;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #002052;
    margin-bottom: 14px;
}

.form-group label i {
    color: #ff5e15;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e8eef5;
    border-radius: 14px;
    font-size: 16px;
    color: #002052;
    background: #f8f9fb;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff5e15;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 94, 21, 0.08);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
    line-height: 1.6;
}

.submit-button {
    width: 100%;
    padding: 20px 40px;
    background: linear-gradient(135deg, #ff5e15 0%, #ff8a4d 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 32px rgba(255, 94, 21, 0.35);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-button:hover::before {
    width: 300px;
    height: 300px;
}

.submit-button span,
.submit-button i {
    position: relative;
    z-index: 1;
}

.submit-button:hover {
    gap: 16px;
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(255, 94, 21, 0.45);
}

.submit-button:active {
    transform: translateY(-2px);
}

/* Form Image Box */
.form-image-box {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration-dot {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(40px);
}

.dot-1 {
    background: rgba(255, 94, 21, 0.2);
    top: 10%;
    right: 10%;
}

.dot-2 {
    background: rgba(0, 32, 82, 0.15);
    bottom: 20%;
    left: 10%;
}

.dot-3 {
    background: rgba(255, 94, 21, 0.15);
    top: 50%;
    right: 20%;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e8eef5;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #ff5e15, #ff8a4d);
    transition: height 0.4s ease;
}

.feature-item:hover::before {
    height: 100%;
}

.feature-item:hover {
    transform: translateX(12px);
    box-shadow: 0 16px 48px rgba(255, 94, 21, 0.2);
    border-color: rgba(255, 94, 21, 0.2);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(255, 94, 21, 0.12) 0%, rgba(255, 94, 21, 0.06) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5e15;
    font-size: 32px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, #ff5e15 0%, #ff8a4d 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(255, 94, 21, 0.3);
}

.feature-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: #002052;
    margin: 0 0 8px 0;
}

.feature-text p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Map Section */
.modern-map-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

.map-header {
    text-align: center;
    margin-bottom: 56px;
}

.map-title {
    font-size: 48px;
    font-weight: 800;
    color: #002052;
    margin: 0 0 20px 0;
}

.map-description {
    font-size: 19px;
    color: #64748b;
    margin: 0;
}

.map-container {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 32, 82, 0.18);
    height: 550px;
    border: 8px solid #ffffff;
    transition: all 0.4s ease;
}

.map-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 100px rgba(0, 32, 82, 0.22);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-info-sidebar {
        margin-bottom: 40px;
    }
    
    .form-content {
        padding: 40px 32px;
    }
    
    .form-image-box {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .modern-contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-hero-title {
        font-size: 36px;
    }
    
    .contact-hero-description {
        font-size: 16px;
    }
    
    .modern-contact-info {
        padding: 0 0 60px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .info-card {
        padding: 32px 24px;
    }
    
    .contact-section-2025 {
        padding: 80px 0;
    }
    
    .contact-header-center {
        margin-bottom: 60px;
    }
    
    .section-title-center {
        font-size: 36px;
    }
    
    .section-subtitle-center {
        font-size: 17px;
    }
    
    .contact-form-box {
        padding: 40px 28px;
    }
    
    .form-header h3 {
        font-size: 28px;
    }
    
    .form-header p {
        font-size: 15px;
    }
    
    .trust-badges-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-bottom-cta {
        padding: 36px 28px;
        margin-top: 60px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content > i {
        font-size: 48px;
    }
    
    .cta-text h4 {
        font-size: 24px;
    }
    
    .modern-contact-form {
        padding: 60px 0;
    }
    
    .form-title {
        font-size: 32px;
    }
    
    .form-description {
        font-size: 16px;
    }
    
    .form-content {
        padding: 32px 24px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }
    
    .modern-map-section {
        padding: 60px 0;
    }
    
    .map-title {
        font-size: 32px;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .modern-contact-hero {
        padding: 80px 0 40px;
    }
    
    .contact-hero-title {
        font-size: 28px;
    }
    
    .contact-hero-description {
        font-size: 15px;
    }
    
    .modern-breadcrumb .breadcrumb {
        padding: 12px 20px;
        font-size: 13px;
        flex-wrap: wrap;
    }
    
    .modern-breadcrumb .breadcrumb-item a,
    .modern-breadcrumb .breadcrumb-item.active {
        padding: 4px 8px;
        font-size: 12px;
    }
    
    .info-icon {
        width: 72px;
        height: 72px;
        font-size: 32px;
    }
    
    .info-card h3 {
        font-size: 18px;
    }
    
    .contact-section-2025 {
        padding: 60px 0;
    }
    
    .section-badge-2025 {
        padding: 12px 20px;
    }
    
    .badge-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .badge-text {
        font-size: 12px;
    }
    
    .section-title-center {
        font-size: 28px;
    }
    
    .section-subtitle-center {
        font-size: 16px;
    }
    
    .contact-form-box {
        padding: 32px 20px;
        border-radius: 24px;
    }
    
    .form-header {
        margin-bottom: 36px;
    }
    
    .form-header h3 {
        font-size: 24px;
    }
    
    .form-header p {
        font-size: 14px;
    }
    
    .form-group-modern {
        margin-bottom: 24px;
    }
    
    .form-group-modern label {
        font-size: 14px;
    }
    
    .form-input-modern,
    .form-textarea-modern {
        padding: 16px 20px;
        font-size: 15px;
        border-radius: 14px;
    }
    
    .submit-button-modern {
        padding: 18px 36px;
        font-size: 16px;
        border-radius: 14px;
    }
    
    .trust-badges-row {
        gap: 16px;
        padding-top: 32px;
        margin-top: 32px;
    }
    
    .trust-badge-item {
        font-size: 13px;
        gap: 10px;
    }
    
    .trust-badge-item i {
        font-size: 18px;
    }
    
    .contact-bottom-cta {
        padding: 28px 20px;
        margin-top: 48px;
        border-radius: 24px;
    }
    
    .cta-content > i {
        font-size: 40px;
    }
    
    .cta-text h4 {
        font-size: 20px;
    }
    
    .cta-text p {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 16px;
        border-radius: 14px;
    }
    
    .info-card-modern {
        padding: 28px 24px;
        border-radius: 20px;
    }
    
    .info-icon-box {
        width: 64px;
        height: 64px;
        font-size: 28px;
        border-radius: 18px;
    }
    
    .info-card-modern h3 {
        font-size: 18px;
    }
    
    .info-card-modern a,
    .info-card-modern span:last-child {
        font-size: 16px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .form-content {
        padding: 28px 20px;
    }
    
    .contact-info-sidebar {
        padding: 32px 24px;
    }
    
    .sidebar-header h3 {
        font-size: 24px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .submit-button {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .feature-text h4 {
        font-size: 16px;
    }
    
    .map-title {
        font-size: 28px;
    }
    
    .map-container {
        height: 300px;
        border-radius: 20px;
    }
}
