/* ============================================
   STYLES PERSONNALISÉS POUR INDEX.PHP
   VIP Animations - Bordeaux
   ============================================ */

/* ===== HEADER & NAVIGATION ===== */

/* Header principal */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-upper {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

/* Header scrollé */
.main-header.fixed-header .header-upper {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(25px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(102, 126, 234, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    position: relative;
}

/* Logo */
.logo-outer {
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

.logo-outer a {
    display: block;
    position: relative;
}

.logo-outer img {
    max-height: 65px;
    width: auto;
    transition: all 0.4s ease;
}

.logo-outer:hover img {
    transform: translateY(-3px) scale(1.05);
}

.main-header.fixed-header .logo-outer img {
    max-height: 55px;
}

/* Navigation principale */
.main-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}

/* Logo menu mobile (caché sur desktop) */
.mobile-menu-logo {
    display: none;
}

.navigation {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.navigation li {
    position: relative;
    margin: 0;
}

.navigation li a {
    display: block;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.navigation li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.navigation li a:hover::before,
.navigation li a.current::before {
    left: 0;
}

.navigation li a:hover {
    color: white;
    background: rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.navigation li a.current {
    color: white;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.25) 100%);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

/* Bouton de contact */
.menu-btns {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-btns .theme-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-btns .theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s;
}

.menu-btns .theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.menu-btns .theme-btn:hover::before {
    left: 100%;
}

.menu-btns .theme-btn:active {
    transform: translateY(-1px);
}

/* Bouton menu mobile */
.mobile-nav-toggler {
    display: none;
    width: 45px;
    height: 45px;
    background: rgba(102, 126, 234, 0.15);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-nav-toggler:hover {
    background: rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.5);
    transform: scale(1.05);
}

.mobile-nav-toggler span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-nav-toggler span:nth-child(1) {
    top: 14px;
}

.mobile-nav-toggler span:nth-child(2) {
    top: 22px;
}

.mobile-nav-toggler span:nth-child(3) {
    top: 30px;
}

.mobile-nav-toggler.active span:nth-child(1) {
    top: 22px;
    transform: translateX(-50%) rotate(45deg);
}

.mobile-nav-toggler.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggler.active span:nth-child(3) {
    top: 22px;
    transform: translateX(-50%) rotate(-45deg);
}

/* Responsive - Tablettes */
@media (max-width: 991px) {
    .header-inner {
        padding: 15px 0;
    }

    .logo-outer img {
        max-height: 55px;
    }

    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(25px);
        padding: 30px 30px 30px;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        border-left: 1px solid rgba(102, 126, 234, 0.2);
        flex-direction: column;
    }

    .main-menu.active {
        right: 0;
    }

    /* Logo dans le menu mobile */
    .mobile-menu-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 0 30px;
        border-bottom: 1px solid rgba(102, 126, 234, 0.2);
        margin-bottom: 30px;
    }

    .mobile-menu-logo img {
        max-height: 60px;
        width: auto;
    }

    .navigation {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .navigation li {
        width: 100%;
    }

    .navigation li a {
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
    }

    .menu-btns {
        flex-direction: column;
        width: 100%;
        margin-top: 30px;
    }

    .menu-btns .theme-btn {
        width: 100%;
        text-align: center;
        padding: 16px 30px;
    }

    .mobile-nav-toggler {
        display: block;
    }

    /* Overlay pour fermer le menu mobile */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Responsive - Mobile */
@media (max-width: 576px) {
    .header-inner {
        padding: 12px 0;
    }

    .logo-outer img {
        max-height: 45px;
    }

    .main-menu {
        width: 85%;
        max-width: 280px;
        padding: 20px 20px 20px;
    }

    .mobile-menu-logo img {
        max-height: 50px;
    }

    .navigation li a {
        padding: 12px 15px;
        font-size: 14px;
    }

    .menu-btns .theme-btn {
        padding: 14px 25px;
        font-size: 14px;
    }

    .mobile-nav-toggler {
        width: 40px;
        height: 40px;
    }

    .mobile-nav-toggler span {
        width: 20px;
    }

    .mobile-nav-toggler span:nth-child(1) {
        top: 12px;
    }

    .mobile-nav-toggler span:nth-child(2) {
        top: 19px;
    }

    .mobile-nav-toggler span:nth-child(3) {
        top: 26px;
    }

    .mobile-nav-toggler.active span:nth-child(1),
    .mobile-nav-toggler.active span:nth-child(3) {
        top: 19px;
    }
}


/* ===== MODAL DE DEMANDE DE DEVIS ===== */

/* Modal overlay */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    padding: 20px;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

/* Modal content container */
.modal-content {
    background: linear-gradient(145deg, rgba(30, 30, 40, 0.95) 0%, rgba(20, 20, 30, 0.95) 100%);
    backdrop-filter: blur(20px);
    margin: 3% auto;
    padding: 0;
    border: 1px solid rgba(102, 126, 234, 0.2);
    width: 90%;
    max-width: 650px;
    border-radius: 25px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(102, 126, 234, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

/* Close button */
.close {
    position: absolute;
    right: 25px;
    top: 25px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.close:hover {
    color: white;
    background: rgba(255, 87, 87, 0.2);
    transform: rotate(90deg);
}

/* Form steps */
.step {
    display: none;
    opacity: 0;
    padding: 50px 40px 40px;
    position: relative;
    animation: stepFadeIn 0.4s ease-out forwards;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step.active {
    display: block;
}

.step h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 20px;
}

.step h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

/* Form groups */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

/* Form inputs */
.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px;
    color: #fff !important;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Segoe UI', sans-serif;
}

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

.form-control:focus,
input:focus,
textarea:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(102, 126, 234, 0.5) !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1) !important;
    color: #fff !important;
}

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

/* Checkbox group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-group label:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(5px);
}

.checkbox-group input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-right: 15px;
    cursor: pointer;
    accent-color: #667eea;
}

/* Form actions */
.form-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.form-actions button {
    padding: 14px 35px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

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

.next-btn,
button[type="submit"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.next-btn:hover,
button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.prev-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.prev-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Success message */
.success-message {
    display: none;
    padding: 50px 40px;
    text-align: center;
}

.success-message b {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    padding: 30px;
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.15) 0%, rgba(56, 249, 215, 0.15) 100%);
    border: 2px solid rgba(67, 233, 123, 0.3);
    border-radius: 15px;
}

/* Modal responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
    }

    .step {
        padding: 40px 25px 30px;
    }

    .step h2 {
        font-size: 24px;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions button {
        width: 100%;
    }

    .close {
        right: 15px;
        top: 15px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}


/* ===== SECTION ABOUT ===== */

.about-area {
    position: relative;
    padding: 150px 0 80px;
    overflow: hidden;
}

.about-area::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    pointer-events: none;
    animation: floatGlow 10s ease-in-out infinite;
}

.about-area::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    pointer-events: none;
    animation: floatGlow 12s ease-in-out infinite reverse;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    50% { transform: translate(20px, -20px) scale(1.05); opacity: 0.6; }
}

.about-image-part {
    position: relative;
    text-align: center;
    padding: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(102, 126, 234, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-part:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.about-image-part::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.15) 0%, transparent 100%);
    pointer-events: none;
}

.about-image-part img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px 30px 0 0;
    filter: brightness(0.95) contrast(1.05);
    transition: all 0.5s ease;
}

.about-image-part:hover img {
    filter: brightness(1) contrast(1.1);
    transform: scale(1.02);
}

.about-image-part h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 25px 0 10px;
    padding: 0 30px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.about-image-part > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    padding: 0 30px 30px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.about-social {
    margin: 0;
    padding: 25px 30px 35px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.about-social ul li {
    display: inline-block;
    margin: 0;
}

.about-social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-social ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.about-social ul li a:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: rgba(102, 126, 234, 0.5);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.about-social ul li a:hover::before {
    left: 100%;
}

.about-content-part {
    position: relative;
    padding: 40px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.about-content-part:hover {
    border-color: rgba(102, 126, 234, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.about-content-part h1,
.about-content-part h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.3;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content-part .adress-field ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.about-content-part .adress-field ul li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.8;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-content-part .adress-field ul li:last-child {
    border-bottom: none;
}

.about-content-part .adress-field ul li b {
    color: #fff;
    font-weight: 600;
}

.about-content-part .hero-btns {
    margin-top: 30px;
}

.about-content-part .theme-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.about-content-part .theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.about-content-part .theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.about-content-part .theme-btn:hover::before {
    left: 100%;
}

/* About responsive */
@media (max-width: 991px) {
    .about-image-part {
        margin-bottom: 40px;
    }

    .about-content-part h1,
    .about-content-part h2 {
        font-size: 28px;
    }

    .about-area {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .about-image-part h2 {
        font-size: 28px;
    }

    .about-social ul {
        gap: 10px;
    }

    .about-social ul li a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .about-content-part {
        padding: 25px;
    }
}


/* ===== SECTION PACKS / PRICING ===== */

.pricing-area {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.pricing-area::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

.pricing-area::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    pointer-events: none;
    animation: pulseGlow 10s ease-in-out infinite reverse;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.pricing-area .section-title p {
    color: rgba(102, 126, 234, 0.9);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.pricing-area .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
}

/* === Nouveau Design Cartes Pricing === */

.pricing-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 35px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(102, 126, 234, 0.15);
}

/* Badge Recommandé */
.pricing-card-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 45px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Header de la carte */
.pricing-card-header {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.pricing-card-icon i {
    font-size: 36px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card:hover .pricing-card-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.pricing-card:hover .pricing-card-icon i {
    -webkit-text-fill-color: white;
    background: none;
}

.pricing-card-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card-price {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: #667eea;
    padding: 10px 25px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50px;
}

.pricing-card-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

/* Description */
.pricing-card-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    padding: 0 10px;
}

.pricing-card-description p {
    margin: 0;
}

/* Divider */
.pricing-card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    margin: 10px 0 25px;
}

/* Features / Liste */
.pricing-card-features {
    flex: 1;
    margin-bottom: 25px;
}

.pricing-card-features h4 {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card-features h4 i {
    color: #667eea;
    font-size: 18px;
}

.pricing-card-features ul,
.pricing-card-features ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card-features li,
.pricing-card-features p {
    position: relative;
    padding: 14px 15px 14px 35px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pricing-card-features li:last-child,
.pricing-card-features p:last-child {
    margin-bottom: 0;
}

.pricing-card-features li::before,
.pricing-card-features p::before {
    content: '✓';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pricing-card-features li:hover,
.pricing-card-features p:hover {
    color: #fff;
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateX(5px);
}

.pricing-card-features li:hover::before,
.pricing-card-features p:hover::before {
    color: #a78bfa;
}

/* Options list style */
.pricing-card-options-list li,
.pricing-card-options-list p {
    padding: 16px 15px 16px 40px;
    font-size: 15px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.03) 100%);
    border-color: rgba(102, 126, 234, 0.1);
}

.pricing-card-options-list li::before,
.pricing-card-options-list p::before {
    content: '★';
    font-size: 14px;
    left: 14px;
    color: #a78bfa;
}

/* Note en bas */
.pricing-card-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    margin-top: auto;
}

.pricing-card-note i {
    color: #667eea;
    font-size: 20px;
}

.pricing-card-note span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.5;
}

/* Bouton CTA */
.pricing-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(102, 126, 234, 0.35);
    margin-top: auto;
}

.pricing-card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s;
}

.pricing-card-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.5);
}

.pricing-card-btn:hover::before {
    left: 100%;
}

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

.pricing-card-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* Carte principale mise en avant */
.pricing-card-main {
    border-color: rgba(102, 126, 234, 0.3);
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.pricing-card-main::before {
    opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-card {
        padding: 30px;
    }

    .pricing-card-badge {
        top: 15px;
        right: -40px;
        padding: 6px 40px;
        font-size: 11px;
    }

    .pricing-card-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .pricing-area .section-title h2 {
        font-size: 32px;
    }

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

    .pricing-card-icon {
        width: 70px;
        height: 70px;
    }

    .pricing-card-icon i {
        font-size: 30px;
    }

    .pricing-card-title {
        font-size: 20px;
    }

    .pricing-card-features li {
        font-size: 13px;
        padding: 10px 0 10px 25px;
    }

    .pricing-card-btn {
        padding: 16px 25px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .pricing-card-badge {
        position: static;
        transform: none;
        display: inline-block;
        margin-bottom: 15px;
        padding: 6px 15px;
        border-radius: 20px;
    }
}


/* ===== PICTURES PAGE ===== */

/* Hero Section avec Logo */
.pictures-hero-section {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    overflow: hidden;
}

.pictures-hero-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    animation: heroGlow 10s ease-in-out infinite;
}

.pictures-hero-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    right: -100px;
    pointer-events: none;
    animation: heroGlow 12s ease-in-out infinite reverse;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(-50%, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -20px) scale(1.1); opacity: 0.8; }
}

.hero-content-wrapper {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.hero-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(102, 126, 234, 0.4));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-text-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

/* Modern Filters */
.modern-filters-wrapper {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.modern-filter-btns {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 10px;
    margin: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.25) 100%);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.filter-icon {
    font-size: 20px;
    line-height: 1;
}

.filter-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.filter-btn:hover .filter-text,
.filter-btn.active .filter-text {
    color: white;
}

/* Modern Project Cards */
.modern-project-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
}

.modern-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.modern-project-card:hover::before {
    transform: scaleX(1);
}

.modern-project-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(102, 126, 234, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/11;
    background: rgba(0, 0, 0, 0.3);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-project-card:hover .card-image {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-project-card:hover .card-overlay {
    opacity: 1;
}

.card-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: white;
    color: #667eea;
    border-radius: 50%;
    font-size: 28px;
    transition: all 0.3s ease;
    transform: scale(0.8) rotate(0deg);
}

.modern-project-card:hover .card-link-btn {
    transform: scale(1) rotate(45deg);
}

.card-link-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1) rotate(45deg);
}

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.modern-project-card:hover .card-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Empty State */
.empty-state-pictures {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    margin: 40px 0;
}

.empty-icon {
    font-size: 80px;
    margin-bottom: 25px;
    opacity: 0.5;
    animation: emptyFloat 3s ease-in-out infinite;
}

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

.empty-state-pictures h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.empty-state-pictures p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Projects Area */
.projects-area {
    position: relative;
    padding: 80px 0 120px;
    overflow: hidden;
}

.projects-area::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    pointer-events: none;
    animation: floatGlow 10s ease-in-out infinite;
}

/* Pictures Responsive */
@media (max-width: 991px) {
    .pictures-hero-section {
        padding: 140px 0 80px;
    }

    .hero-logo {
        max-width: 220px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .modern-filter-btns {
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-btn {
        padding: 12px 24px;
    }

    .filter-icon {
        font-size: 18px;
    }

    .filter-text {
        font-size: 14px;
    }
}

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

    .hero-logo {
        max-width: 180px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .modern-filters-wrapper {
        margin-bottom: 40px;
    }

    .modern-filter-btns {
        padding: 8px;
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
    }

    .filter-icon {
        font-size: 16px;
    }

    .filter-text {
        font-size: 13px;
    }

    .card-content {
        padding: 20px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-description {
        font-size: 13px;
    }

    .card-link-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .empty-state-pictures {
        padding: 60px 30px;
    }

    .empty-icon {
        font-size: 60px;
    }

    .empty-state-pictures h3 {
        font-size: 24px;
    }

    .empty-state-pictures p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .pictures-hero-section {
        padding: 100px 0 50px;
    }

    .hero-logo-container {
        margin-bottom: 30px;
    }

    .hero-logo {
        max-width: 150px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .modern-filter-btns {
        flex-direction: column;
        gap: 8px;
    }

    .filter-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}


/* ===== CONTACT PAGE ===== */

/* Contact Area */
.contact-area {
    position: relative;
    padding: 80px 0 120px;
    overflow: hidden;
}

.contact-area::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    pointer-events: none;
    animation: floatGlow 10s ease-in-out infinite;
}

.contact-area::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    pointer-events: none;
    animation: floatGlow 12s ease-in-out infinite reverse;
}

/* Contact Info Cards */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modern-contact-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.modern-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.modern-contact-card:hover::before {
    transform: scaleY(1);
}

.modern-contact-card:hover {
    transform: translateX(10px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(102, 126, 234, 0.1);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    font-size: 32px;
    color: #667eea;
    transition: all 0.4s ease;
}

.modern-contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.contact-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.modern-contact-card:hover .contact-card-content h3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-card-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

.contact-card-content p a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card-content p a:hover {
    color: #667eea;
}

/* Modern Contact Form */
.modern-contact-form {
    position: relative;
    padding: 40px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.modern-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.08) 0%, transparent 100%);
    border-radius: 25px 25px 0 0;
    pointer-events: none;
}

.modern-contact-form:hover {
    border-color: rgba(102, 126, 234, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modern-contact-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.modern-contact-form .form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.modern-contact-form .form-group label.for-icon {
    position: absolute;
    right: 15px;
    top: 38px;
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
}

.modern-contact-form .form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px;
    color: #fff !important;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.modern-contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.modern-contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(102, 126, 234, 0.5) !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1) !important;
}

.modern-contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.modern-contact-form .alert {
    padding: 15px 20px;
    border-radius: 12px;
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
    margin-bottom: 20px;
}

.modern-contact-form .theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.modern-contact-form .theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.modern-contact-form .theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.modern-contact-form .theme-btn:hover::before {
    left: 100%;
}

.modern-contact-form .theme-btn:active {
    transform: translateY(-1px);
}

/* Contact Responsive */
@media (max-width: 991px) {
    .contact-area {
        padding: 60px 0 80px;
    }

    .contact-info-wrapper {
        margin-bottom: 40px;
    }

    .modern-contact-card {
        padding: 25px;
    }

    .contact-card-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 28px;
    }

    .modern-contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-area {
        padding: 40px 0 60px;
    }

    .modern-contact-card {
        padding: 20px;
        gap: 15px;
    }

    .contact-card-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 24px;
        border-radius: 12px;
    }

    .contact-card-content h3 {
        font-size: 16px;
    }

    .contact-card-content p {
        font-size: 14px;
    }

    .modern-contact-form {
        padding: 25px;
    }

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

    .modern-contact-form .theme-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .modern-contact-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .contact-card-icon {
        margin: 0 auto;
    }

    .modern-contact-form {
        padding: 20px;
    }

    .modern-contact-form .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
}
