:root {
            --ought-contact-primary: var(--bs-secondary) /*#4361ee*/;
            --ought-contact-secondary: #3a0ca3;
            --ought-contact-light: #f8f9fa;
            --ought-contact-dark: #212529;
            --ought-contact-success: #4cc9f0;
            --ought-contact-border: #e0e0e0;
            --ought-contact-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        /*body {
            background-color: #f5f7fb;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--ought-contact-dark);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }*/
        
        .ought-contact-container {
            max-width: 800px;
            width: 100%;
            position: relative;
        }
        
        .ought-contact-card {
            background: white;
            border-radius: 10px;
            box-shadow: var(--ought-contact-shadow);
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .ought-contact-card:hover {
            transform: translateY(-5px);
        }
        
        .ought-contact-header {
            background: var(--bs-secondary) /*linear-gradient(135deg, var(--ought-contact-primary), var(--ought-contact-secondary))*/;
            color: white;
            padding: 30px;
            text-align: center;
        }
        
        .ought-contact-header h2 {
            margin: 0;
            font-weight: 700;
            font-size: 2.2rem;
        }
        
        .ought-contact-header p {
            margin: 10px 0 0;
            opacity: 0.9;
        }
        
        .ought-contact-body {
            padding: 30px;
        }
        
        .ought-contact-form-group {
            margin-bottom: 25px;
            position: relative;
        }
        
        .ought-contact-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--ought-contact-dark);
        }
        
        .ought-contact-input {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid var(--ought-contact-border);
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            background-color: var(--ought-contact-light);
        }
        
        .ought-contact-input:focus {
            border-color: var(--ought-contact-primary);
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
            outline: none;
        }
        
        .ought-contact-select {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid var(--ought-contact-border);
            border-radius: 10px;
            font-size: 16px;
            background-color: var(--ought-contact-light);
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234361ee' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 16px;
        }
        
        .ought-contact-select:focus {
            border-color: var(--ought-contact-primary);
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
            outline: none;
        }
        
        .ought-contact-textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .ought-contact-btn {
            background: var(--bs-primary) /*linear-gradient(135deg, var(--ought-contact-primary), var(--ought-contact-secondary))*/;
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .ought-contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
        }
        
        .ought-contact-btn:active {
            transform: translateY(0);
        }
        
        .ought-contact-validation {
            color: #e63946;
            font-size: 14px;
            margin-top: 6px;
            display: none;
        }
        
        .ought-contact-input.error {
            border-color: #e63946;
        }
        
        .ought-contact-input.success {
            border-color: #2a9d8f;
        }
        
        .ought-contact-phone-container {
            display: flex;
            gap: 10px;
        }
        
        .ought-contact-country-code {
            flex: 0 0 140px;
        }
        
        .ought-contact-phone-number {
            flex: 1;
        }
        
        .ought-contact-footer {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--ought-contact-border);
            color: #6c757d;
            font-size: 14px;
        }
        
        /* Animated Popup Notification */
        .ought-contact-popup {
            position: fixed;
            top: 100px;
            right: 20px;
            background: var(--bs-primary) /*linear-gradient(135deg, #4cc9f0, #4361ee)*/;
            color: white;
            padding: 15px 20px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 16px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 10px;
            max-width: 320px;
            animation: slideIn 0.5s ease-out, float 3s ease-in-out infinite 0.5s;
            transform-origin: top right;
        }
        
        .ought-contact-popup::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 10px 10px 0 0;
        }
        
        .ought-contact-popup i {
            font-size: 20px;
            animation: pulse 2s infinite;
        }
        
        .ought-contact-popup-content {
            flex: 1;
        }
        
        .ought-contact-popup-close {
            background: none;
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s;
            padding: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        
        .ought-contact-popup-close:hover {
            opacity: 1;
            background: rgba(255, 255, 255, 0.2);
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(100px) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
            100% {
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }
        
        /* Progress bar animation */
        .ought-contact-popup-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 0 0 10px 10px;
            animation: progress 8s linear;
        }
        
        @keyframes progress {
            from {
                width: 100%;
            }
            to {
                width: 0%;
            }
        }
        
        @media (max-width: 768px) {
            .ought-contact-popup {
                top: 10px;
                right: 10px;
                left: 10px;
                max-width: none;
            }
            
            body {
                padding: 10px;
            }
        }
        
        @media (max-width: 576px) {
            .ought-contact-container {
                margin: 0 auto;
            }
            
            .ought-contact-body {
                padding: 20px;
            }
            
            .ought-contact-header {
                padding: 20px;
            }
            
            .ought-contact-header h2 {
                font-size: 1.8rem;
            }
            
            .ought-contact-phone-container {
                flex-direction: column;
            }
            
            .ought-contact-country-code {
                flex: 1;
            }
        }
