/* ===== CONTACT HERO – EN-TÊTE MAGNIFIQUE ===== */
.contact-hero {
    position: relative;
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    font-family: 'Inter', sans-serif;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,56,168,0.85), rgba(0,32,92,0.9));
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 20px;
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.3s;
}

.badge-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff5722, #ff8a65, #ff5722, transparent);
}

.badge-text {
    font-size: 0.85rem;
    letter-spacing: 8px;
    font-weight: 500;
    color: #ff5722;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255,87,34,0.5);
}

.contact-hero-title {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.5s;
}

.title-line {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.title-line.accent {
    background: linear-gradient(135deg, #ff8a65, #ff5722, #e64a19);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 5.5rem;
    letter-spacing: 4px;
}

.contact-hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.7s;
}

.contact-hero-divider i {
    color: #ff5722;
    font-size: 1.4rem;
    filter: drop-shadow(0 0 15px rgba(255,87,34,0.6));
    animation: dividerPulse 3s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

.contact-hero-divider span {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff5722, #ff8a65, #ff5722, transparent);
}

.contact-hero-description {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.9s;
}

.contact-hero-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 1.1s;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,87,34,0.3);
    border-radius: 60px;
    transition: all 0.3s;
}

.hero-info-item:hover {
    background: rgba(255,87,34,0.15);
    transform: translateY(-5px);
    border-color: #ff5722;
}

.hero-info-item i {
    font-size: 1.5rem;
    color: #ff5722;
}

.info-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #ff8a65;
    text-transform: uppercase;
}

.info-value {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.contact-hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.7rem;
    letter-spacing: 3px;
    opacity: 0.7;
    transition: all 0.3s;
    cursor: pointer;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.contact-hero-scroll:hover {
    opacity: 1;
    color: #ff5722;
}

/* ===== SECTION CONTACT PREMIUM (STYLES COMPLETS) ===== */
.contact-premium {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #0a121f 0%, #020814 100%);
    overflow: hidden;
}

.contact-premium .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-premium::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,87,34,0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.contact-premium::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,87,34,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

/* ===== EN-TÊTE ROYAL ===== */
.section-crown {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 70px;
    position: relative;
}

.crest-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.crest-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff5722, #ff8a65, #ff5722, transparent);
}

.crest-icon {
    font-size: 2.2rem;
    color: #ff5722;
    text-shadow: 0 0 15px rgba(255,87,34,0.6);
    animation: subtle-glow 3s infinite ease-in-out;
}

@keyframes subtle-glow {
    0%, 100% { text-shadow: 0 0 15px rgba(255,87,34,0.6); }
    50% { text-shadow: 0 0 30px rgba(255,87,34,0.9); }
}

.section-caps {
    text-align: center;
}

.section-caps .subhead {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    letter-spacing: 12px;
    text-transform: uppercase;
    color: #ff8a65;
    margin-bottom: 15px;
    font-weight: 500;
    word-spacing: 5px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.title-luxury {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}

.title-outline {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,87,34,0.7);
    text-stroke: 1.5px rgba(255,87,34,0.7);
    letter-spacing: 2px;
    text-shadow: 0 5px 20px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.title-embossed {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 
        0 2px 10px rgba(0,0,0,0.5),
        0 5px 20px rgba(255,87,34,0.3),
        0 8px 30px rgba(0,0,0,0.4);
    letter-spacing: 4px;
    margin-top: -10px;
    line-height: 1.1;
}

.title-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.title-rule i {
    color: #ff5722;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 8px rgba(255,87,34,0.6));
}

.rule-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff5722, #ff8a65, #ff5722, transparent);
}

/* ===== COLONNE GAUCHE ===== */
.contact-info {
    background: linear-gradient(135deg, rgba(0,56,168,0.96), rgba(0,32,92,0.96));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,87,34,0.3);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 30px 50px rgba(0,56,168,0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 70px rgba(0,56,168,0.5);
}

.contact-welcome {
    margin-bottom: 30px;
}

.welcome-badge {
    display: inline-block;
    background: rgba(255,87,34,0.15);
    border: 1px solid rgba(255,87,34,0.3);
    color: #ff5722;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 8px 18px;
    border-radius: 40px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.welcome-badge i {
    color: #ff5722;
    margin-right: 5px;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-info p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    font-size: 1rem;
}

.contact-details {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,87,34,0.15);
    border: 1px solid rgba(255,87,34,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5722;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
}

.contact-detail-item:hover .detail-icon {
    background: #ff5722;
    color: white;
    transform: scale(1.1) rotate(360deg);
}

.detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ff8a65;
    margin-bottom: 5px;
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    margin-bottom: 3px;
}

.detail-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.contact-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-stat {
    flex: 1;
    text-align: center;
    transition: transform 0.3s;
}

.contact-stat:hover {
    transform: scale(1.1);
}

.contact-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff5722;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-stat .stat-label {
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
}

.contact-social .social-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #ff8a65;
    margin-bottom: 15px;
}

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

.social-circle {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,87,34,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
}

.social-circle:hover {
    background: #ff5722;
    border-color: transparent;
    color: white;
    transform: translateY(-5px) scale(1.1);
}

/* ===== COLONNE DROITE - FORMULAIRE ===== */
.contact-form-container {
    border-radius: 30px;
    padding: 35px;
    position: relative;
    background: linear-gradient(145deg, rgba(0,56,168,0.96), rgba(0,32,92,0.96));
    box-shadow: 0 30px 60px rgba(0,56,168,0.3), 0 0 0 1px rgba(255,87,34,0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
}

.contact-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 50px 80px rgba(0,56,168,0.5), 0 0 0 2px rgba(255,87,34,0.4);
}

.form-ornament {
    position: absolute;
    top: -15px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: #ff5722;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(255,87,34,0.3);
    animation: ornamentFloat 4s ease-in-out infinite;
    z-index: 20;
}

@keyframes ornamentFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(-5deg); }
    75% { transform: translateY(-4px) rotate(5deg); }
}

.contact-form {
    position: relative;
    z-index: 10;
}

/* Header du formulaire */
.form-header {
    margin-bottom: 25px;
    text-align: center;
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    font-family: 'Space Grotesk', sans-serif;
    text-shadow: 0 2px 10px rgba(255,87,34,0.2);
}

.form-subtitle {
    color: #ff8a65;
    font-size: 0.85rem;
}

/* Champs du formulaire */
.form-row {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: floatIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.form-row:nth-child(1) { animation-delay: 0.1s; }
.form-row:nth-child(2) { animation-delay: 0.2s; }
.form-row:nth-child(3) { animation-delay: 0.3s; }
.form-row:nth-child(4) { animation-delay: 0.4s; }
.form-row:nth-child(5) { animation-delay: 0.5s; }

@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.form-group:hover {
    transform: translateY(-2px);
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #ff8a65;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.form-group label i {
    color: #ff5722;
    margin-right: 6px;
    font-size: 0.8rem;
}

/* Inputs */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,87,34,0.3);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff5722;
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(255,87,34,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ff5722' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    color: white;
    cursor: pointer;
}

.form-group select option {
    background: #0a1a2f;
    color: white;
    padding: 10px;
}

/* Effets de focus */
.input-focus-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff5722, #ff8a65, #ff5722, transparent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    z-index: 2;
}

.form-group input:focus ~ .input-focus-border,
.form-group select:focus ~ .input-focus-border,
.form-group textarea:focus ~ .input-focus-border {
    width: 100%;
}

.input-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,87,34,0.2), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 3;
}

.form-group:hover .input-shine {
    left: 150%;
}

/* Checkbox */
.checkbox-row {
    margin: 25px 0 30px;
}

.checkbox-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    padding: 8px 15px 8px 8px;
    border-radius: 8px;
    transition: all 0.3s;
    overflow: hidden;
}

.checkbox-container:hover {
    background: rgba(255,87,34,0.08);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,87,34,0.3);
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
}

.checkbox-container input:checked ~ .checkmark {
    background: #ff5722;
    border-color: #ff5722;
    transform: rotate(360deg) scale(1.1);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
    animation: checkPop 0.3s;
}

@keyframes checkPop {
    0% { transform: rotate(45deg) scale(0); }
    50% { transform: rotate(45deg) scale(1.2); }
    100% { transform: rotate(45deg) scale(1); }
}

.checkbox-text a {
    color: #ff5722;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.checkbox-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ff5722;
    transition: width 0.3s;
}

.checkbox-text a:hover::after {
    width: 100%;
}

/* Bouton */
.btn-contact {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(45deg, #ff5722, #ff8a65, #ff5722);
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    animation: gradientShift 4s infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-contact:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 25px 35px -10px rgba(255,87,34,0.5);
}

.btn-contact:active {
    transform: translateY(-1px) scale(0.99);
}

.btn-icon {
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-size: 1rem;
}

.btn-contact:hover .btn-icon {
    transform: translateX(8px) rotate(5deg) scale(1.1);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s;
    z-index: 1;
}

.btn-contact:hover .btn-shine {
    left: 150%;
}

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

.btn-particles span {
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    opacity: 0;
}

.btn-contact:active .btn-particles span {
    animation: particleBurst 0.6s ease-out forwards;
}

.btn-particles span:nth-child(1) { top: 20%; left: 10%; --x: 25px; --y: -30px; }
.btn-particles span:nth-child(2) { top: 70%; left: 20%; --x: -15px; --y: -25px; }
.btn-particles span:nth-child(3) { top: 30%; left: 80%; --x: 30px; --y: -15px; }
.btn-particles span:nth-child(4) { top: 80%; left: 70%; --x: -25px; --y: -40px; }
.btn-particles span:nth-child(5) { top: 50%; left: 50%; --x: 15px; --y: -45px; }

@keyframes particleBurst {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    30% {
        opacity: 1;
        transform: translate(var(--x), var(--y)) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(calc(var(--x) * 1.5), calc(var(--y) * 1.5)) scale(0);
    }
}

/* Sceau */
.form-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: #ff8a65;
    font-size: 0.75rem;
    transition: all 0.3s;
}

.form-seal:hover {
    color: #ff5722;
    transform: scale(1.03);
}

.form-seal i {
    color: #ff5722;
    animation: sealSpin 8s linear infinite;
    font-size: 0.9rem;
}

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

/* ===== CARTE MAPS ===== */
.contact-map {
    margin-top: 60px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255,87,34,0.3);
    box-shadow: 0 30px 50px rgba(0,56,168,0.3);
    position: relative;
    z-index: 10;
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
    filter: grayscale(0.5) brightness(0.8);
    transition: filter 0.3s;
}

.contact-map:hover iframe {
    filter: grayscale(0.2) brightness(1);
}

.map-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(0,56,168,0.95), rgba(0,32,92,0.95));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255,87,34,0.3);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 20;
    transition: all 0.3s;
}

.map-badge:hover {
    background: rgba(255,87,34,0.2);
    transform: translateY(-3px);
}

.map-badge i {
    font-size: 1rem;
    animation: mapPinPulse 2s infinite;
    color: #ff5722;
}

@keyframes mapPinPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); color: #ff5722; }
}

/* ===== SECTION CONTACT DIRECT ===== */
.contact-direct {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #0a121f 0%, #020814 100%);
    position: relative;
    overflow: hidden;
}

.direct-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.direct-card {
    padding: 40px 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(0,56,168,0.96), rgba(0,32,92,0.96));
    border: 1px solid rgba(255,87,34,0.2);
    box-shadow: 0 20px 40px -10px rgba(0,56,168,0.3);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.direct-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255,87,34,0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.6s;
    pointer-events: none;
}

.direct-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 70px -15px rgba(0,56,168,0.5);
    border-color: rgba(255,87,34,0.5);
}

.direct-card:hover::before {
    opacity: 1;
}

.direct-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255,87,34,0.15);
    border: 1px solid rgba(255,87,34,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ff5722;
    transition: all 0.4s;
}

.direct-card:hover .direct-icon {
    background: #ff5722;
    color: white;
    transform: scale(1.1) rotate(360deg);
}

.direct-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    color: white;
}

.direct-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.8);
}

.direct-contact {
    margin-bottom: 10px;
    font-size: 1rem;
    color: white;
}

.direct-contact span {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #ff8a65;
    margin-right: 10px;
}

.direct-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.direct-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,87,34,0.15);
    border: 1px solid rgba(255,87,34,0.3);
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.direct-btn i {
    color: #ff5722;
    transition: all 0.3s;
}

.direct-btn:hover {
    background: #ff5722;
    color: white;
    transform: translateY(-3px);
}

.direct-btn:hover i {
    color: white;
}

.direct-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #ff5722;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
}

.direct-cta:hover {
    background: #ff8a65;
    gap: 15px;
    transform: scale(1.05);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .title-line {
        font-size: 4rem;
    }
    .title-line.accent {
        font-size: 4.5rem;
    }
    .contact-hero-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .hero-info-item {
        width: 100%;
        max-width: 400px;
    }
    .direct-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .title-line {
        font-size: 3.2rem;
    }
    .title-line.accent {
        font-size: 3.6rem;
    }
    .contact-hero-divider span {
        width: 80px;
    }
    .direct-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .contact-info,
    .contact-form-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 600px;
    }
    .title-line {
        font-size: 2.5rem;
    }
    .title-line.accent {
        font-size: 2.8rem;
    }
    .contact-hero-divider span {
        width: 60px;
    }
    .contact-hero-description {
        font-size: 1rem;
    }
    .hero-info-item {
        padding: 12px 20px;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    .direct-card {
        padding: 30px 20px;
    }
    .contact-info h3 {
        font-size: 1.5rem;
    }
    .contact-detail-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .detail-icon {
        margin: 0 auto;
    }
    .detail-content {
        text-align: center;
    }
    .contact-stats {
        flex-wrap: wrap;
    }
    .social-grid {
        justify-content: center;
    }
    .contact-form h3 {
        font-size: 1.5rem;
    }
    .map-badge {
        left: 10px;
        right: 10px;
        width: auto;
        font-size: 0.8rem;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .contact-hero-badge {
        gap: 10px;
    }
    .badge-line {
        width: 40px;
    }
    .badge-text {
        font-size: 0.7rem;
        letter-spacing: 4px;
    }
    .title-line {
        font-size: 2rem;
    }
    .title-line.accent {
        font-size: 2.2rem;
    }
    .contact-hero-divider {
        gap: 15px;
    }
    .contact-hero-divider i {
        font-size: 1rem;
    }
    .contact-hero-divider span {
        width: 40px;
    }
    .contact-premium .container {
        padding: 0 20px;
    }
    .contact-form-container {
        padding: 25px 20px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
    .btn-contact {
        padding: 14px 20px;
        font-size: 0.8rem;
    }
    .checkbox-container {
        padding: 5px 10px;
    }
    .checkbox-text {
        font-size: 0.75rem;
    }
    .direct-card {
        padding: 25px 15px;
    }
    .direct-buttons {
        flex-direction: column;
    }
    .direct-btn {
        width: 100%;
        justify-content: center;
    }
}