  .footer-modern {
            background: linear-gradient(135deg, #10131f 0%, #1a1f2e 100%);
            color: #eef2ff;
            position: relative;
            border-top: 3px solid #c8102e;
            font-family: 'Inter', sans-serif;
        }

        .footer-modern .footer-logo img {
            max-height: 55px;
            width: auto;
            filter: brightness(0) invert(1);
            margin-bottom: 1rem;
        }

        .footer-modern p, .footer-modern a {
            font-size: 0.9rem;
            line-height: 1.5;
            color: #cdd4f0;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-modern a:hover {
            color: #ff7b96;
        }

        .footer-modern h6 {
            color: white;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-bottom: 1.2rem;
            font-size: 1rem;
            position: relative;
            display: inline-block;
        }
        .footer-modern h6:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 35px;
            height: 2px;
            background: #c8102e;
            border-radius: 2px;
        }

        .footer-modern .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .footer-modern .contact-item i {
            width: 28px;
            font-size: 1rem;
            color: #c8102e;
        }

        .footer-modern .business-partner-item {
            margin-bottom: 14px;
        }

        .footer-modern .social-icon-round {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
            margin-right: 8px;
            transition: all 0.25s;
            color: white;
            font-size: 1.1rem;
        }

        .footer-modern .social-icon-round:hover {
            background: #c8102e;
            transform: translateY(-3px);
        }

        .footer-modern .copyright-bar {
            background: rgba(0, 0, 0, 0.4);
            padding: 1rem 0;
            margin-top: 2rem;
            font-size: 0.8rem;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-modern .top-models-list {
            list-style: none;
            padding-left: 0;
        }
        .footer-modern .top-models-list li {
            margin-bottom: 10px;
        }
        .footer-modern .top-models-list a {
            font-weight: 500;
        }

        .footer-modern hr {
            opacity: 0.2;
            margin: 1rem 0;
        }

        @media (max-width: 991px) {
            .footer-modern .col-md-3, .footer-modern .col-md-2, .footer-modern .col-md-5 {
                margin-bottom: 1.8rem;
            }
        }
        
        .fade-up {
            animation: fadeInUp 0.6s ease forwards;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(25px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        
        
          /* info cards / contact details – glassmorphism effect */
        .contact-info-card {
            background: rgba(20, 20, 30, 0.65);
            backdrop-filter: blur(12px);
            border-radius: 32px;
            padding: 1.8rem 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.25s ease, box-shadow 0.3s;
            height: 100%;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
            background: rgba(30, 30, 45, 0.75);
            border-color: rgba(200, 16, 46, 0.6);
            box-shadow: 0 20px 32px rgba(0, 0, 0, 0.3);
        }
  .info-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 1.2rem;
        }

        .info-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .info-icon {
            width: 44px;
            height: 44px;
            background: rgba(200, 16, 46, 0.85);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            flex-shrink: 0;
            transition: all 0.2s;
        }

        .info-content {
            flex: 1;
        }

        .info-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
            color: #ffb3c1;
            margin-bottom: 6px;
        }

        .info-value {
            color: white;
            font-weight: 500;
            font-size: 1rem;
            line-height: 1.45;
            word-break: break-word;
        }

        .info-value a {
            color: white;
            text-decoration: none;
            border-bottom: 1px dotted rgba(255,255,255,0.4);
            transition: color 0.2s;
        }

        .info-value a:hover {
            color: #ff7b96;
            border-bottom-color: #c8102e;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.2rem;
            padding-top: 0.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.12);
            border-radius: 50%;
            color: #f0f0f0;
            font-size: 1.1rem;
            transition: all 0.25s;
            text-decoration: none;
        }

        .social-links a:hover {
            background: #c8102e;
            color: white;
            transform: translateY(-3px);
        }

        /* form styling – modern floating labels refined */
        .form-card {
            background: rgba(255, 255, 255, 0.96);
            border-radius: 32px;
            padding: 2rem;
            box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(2px);
            height: 100%;
        }

        .form-floating-custom {
            position: relative;
            margin-bottom: 1.5rem;
        }

        .form-control-custom {
            width: 100%;
            padding: 1rem 1rem 0.5rem 1rem;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            font-size: 1rem;
            background: white;
            transition: 0.2s;
            outline: none;
            font-family: 'Inter', sans-serif;
        }

        .form-control-custom:focus {
            border-color: #c8102e;
            box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.2);
        }

        /* floating label style */
        .floating-label {
            position: absolute;
            left: 1rem;
            top: 0.9rem;
            background: transparent;
            padding: 0 0.25rem;
            color: #6c757d;
            font-size: 1rem;
            transition: 0.2s ease all;
            pointer-events: none;
        }

        .form-control-custom:focus ~ .floating-label,
        .form-control-custom:not(:placeholder-shown) ~ .floating-label {
            top: -0.55rem;
            left: 0.9rem;
            font-size: 0.7rem;
            background: white;
            padding: 0 6px;
            color: #c8102e;
            font-weight: 500;
        }

        textarea.form-control-custom {
            resize: vertical;
            min-height: 130px;
        }

        .btn-send {
            background: #c8102e;
            border: none;
            padding: 0.9rem;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 40px;
            color: white;
            width: 100%;
            transition: all 0.25s;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-send:hover {
            background: #a00d26;
            transform: scale(0.98);
            box-shadow: 0 8px 20px rgba(200, 16, 46, 0.3);
        }

        /* responsive touches */
        @media (max-width: 768px) {
            .title-main {
                font-size: 2rem;
            }
            .contact-info-card, .form-card {
                padding: 1.5rem;
            }
            .info-icon {
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
        }

        /* subtle animation for wow-like effect */
        .fade-up {
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(25px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.25s; }
        .delay-3 { animation-delay: 0.4s; }