:root {
            --zest-blue: #0d6efd;
            --zest-gradient: linear-gradient(135deg, #0d6efd 0%, #003d99 100%);
            --zest-dark: #0f172a;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #f8fafc;
            color: #334155;
        }

        .contact-hero {
            background: var(--zest-gradient);
            padding: 100px 0 140px;
            color: white;
            text-align: center;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
        }

        .info-wrapper {
            margin-top: -80px;
            position: relative;
            z-index: 10;
        }

        .info-card {
            background: white;
            padding: 35px 25px;
            border-radius: 24px;
            border: none;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
            transition: 0.3s;
            text-align: center;
            height: 100%;
        }

        .info-card:hover {
            transform: translateY(-10px);
        }

        .icon-box {
            width: 60px;
            height: 60px;
            background: rgba(13, 110, 253, 0.08);
            color: var(--zest-blue);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 20px;
        }

        .form-glass {
            background: white;
            padding: 40px;
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
        }

        .form-control {
            border-radius: 12px;
            padding: 12px 20px;
            border: 2px solid #f1f5f9;
            background: #f8fafc;
        }

        .btn-zest {
            background: var(--zest-blue);
            color: white;
            border-radius: 50px;
            padding: 15px;
            font-weight: 800;
            border: none;
            width: 100%;
            transition: 0.3s;
        }

        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .footer-dark {
            background: var(--zest-dark);
            color: #94a3b8;
            padding: 60px 0 30px;
            margin-top: 50px;
        }

        .footer-link {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.9rem;
        }